All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] gpio: pca953x: Add TI TCA9539 compatible string
@ 2019-05-25 20:52 Marek Vasut
  2019-05-27  1:35 ` Peng Fan
  2019-07-11 22:06 ` Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Marek Vasut @ 2019-05-25 20:52 UTC (permalink / raw)
  To: u-boot

Add TI TCA9539 compatible string for yet another I2C GPIO expander.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Mario Six <mario.six@gdsys.cc>
Cc: Peng Fan <van.freenix@gmail.com>
Cc: Simon Glass <sjg@chromium.org>
---
 drivers/gpio/pca953x_gpio.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpio/pca953x_gpio.c b/drivers/gpio/pca953x_gpio.c
index 341527acc5..07a3356b3c 100644
--- a/drivers/gpio/pca953x_gpio.c
+++ b/drivers/gpio/pca953x_gpio.c
@@ -363,6 +363,7 @@ static const struct udevice_id pca953x_ids[] = {
 	{ .compatible = "ti,tca6408", .data = OF_953X(8, PCA_INT), },
 	{ .compatible = "ti,tca6416", .data = OF_953X(16, PCA_INT), },
 	{ .compatible = "ti,tca6424", .data = OF_953X(24, PCA_INT), },
+	{ .compatible = "ti,tca9539", .data = OF_953X(16, PCA_INT), },
 
 	{ .compatible = "onsemi,pca9654", .data = OF_953X(8, PCA_INT), },
 
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] gpio: pca953x: Add TI TCA9539 compatible string
  2019-05-25 20:52 [U-Boot] [PATCH] gpio: pca953x: Add TI TCA9539 compatible string Marek Vasut
@ 2019-05-27  1:35 ` Peng Fan
  2019-07-11 22:06 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Peng Fan @ 2019-05-27  1:35 UTC (permalink / raw)
  To: u-boot

> Subject: [U-Boot] [PATCH] gpio: pca953x: Add TI TCA9539 compatible string
> 
> Add TI TCA9539 compatible string for yet another I2C GPIO expander.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Mario Six <mario.six@gdsys.cc>
> Cc: Peng Fan <van.freenix@gmail.com>
> Cc: Simon Glass <sjg@chromium.org>
> ---
>  drivers/gpio/pca953x_gpio.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/gpio/pca953x_gpio.c b/drivers/gpio/pca953x_gpio.c index
> 341527acc5..07a3356b3c 100644
> --- a/drivers/gpio/pca953x_gpio.c
> +++ b/drivers/gpio/pca953x_gpio.c
> @@ -363,6 +363,7 @@ static const struct udevice_id pca953x_ids[] = {
>  	{ .compatible = "ti,tca6408", .data = OF_953X(8, PCA_INT), },
>  	{ .compatible = "ti,tca6416", .data = OF_953X(16, PCA_INT), },
>  	{ .compatible = "ti,tca6424", .data = OF_953X(24, PCA_INT), },
> +	{ .compatible = "ti,tca9539", .data = OF_953X(16, PCA_INT), },

Reviewed-by: Peng Fan <peng.fan@nxp.com>

> 
>  	{ .compatible = "onsemi,pca9654", .data = OF_953X(8, PCA_INT), },
> 
> --
> 2.20.1
> 
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.d
> enx.de%2Flistinfo%2Fu-boot&amp;data=02%7C01%7CPeng.Fan%40nxp.com
> %7C3d681612740f42c7ca5a08d6e152f5db%7C686ea1d3bc2b4c6fa92cd99c5
> c301635%7C0%7C0%7C636944143774773754&amp;sdata=VgzA%2F3OrRjFy
> WyHTZLpHAdcxaYQ8KUehj36Kd6c3Djk%3D&amp;reserved=0

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] gpio: pca953x: Add TI TCA9539 compatible string
  2019-05-25 20:52 [U-Boot] [PATCH] gpio: pca953x: Add TI TCA9539 compatible string Marek Vasut
  2019-05-27  1:35 ` Peng Fan
@ 2019-07-11 22:06 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2019-07-11 22:06 UTC (permalink / raw)
  To: u-boot

On Sat, May 25, 2019 at 10:52:20PM +0200, Marek Vasut wrote:

> Add TI TCA9539 compatible string for yet another I2C GPIO expander.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Mario Six <mario.six@gdsys.cc>
> Cc: Peng Fan <van.freenix@gmail.com>
> Cc: Simon Glass <sjg@chromium.org>
> Reviewed-by: Peng Fan <peng.fan@nxp.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190711/b79e3d02/attachment.sig>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-07-11 22:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-25 20:52 [U-Boot] [PATCH] gpio: pca953x: Add TI TCA9539 compatible string Marek Vasut
2019-05-27  1:35 ` Peng Fan
2019-07-11 22:06 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.