diff options
author | Marek Vasut <marex@denx.de> | 2019-05-25 22:52:20 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-07-11 14:11:20 -0400 |
commit | 4a09831ab21e27857c60ef1608d6ad39c7068dd6 (patch) | |
tree | 1a5c704c996deeccfd79a1b3d8fc65a090e2379a /drivers/gpio | |
parent | b2a2bf41acd7a1111dd67575528f3911086149a6 (diff) | |
download | u-boot-4a09831ab21e27857c60ef1608d6ad39c7068dd6.tar.gz |
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>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/pca953x_gpio.c | 1 |
1 files changed, 1 insertions, 0 deletions
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), }, |