aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorPeter Robinson <pbrobinson@gmail.com>2021-06-13 23:03:26 +0100
committerBartosz Golaszewski <bgolaszewski@baylibre.com>2021-06-16 21:26:35 +0200
commit6d49b3a0f351925b5ea5047166c112b7590b918a (patch)
tree6ffc2a5906302291f2d42d94dc439fa9ac9e8369 /drivers/gpio
parentgpio: gpio-xilinx: update on suspend and resume calls (diff)
downloadlinux-dev-6d49b3a0f351925b5ea5047166c112b7590b918a.tar.xz
linux-dev-6d49b3a0f351925b5ea5047166c112b7590b918a.zip
gpio: pca953x: Add support for the On Semi pca9655
The On Semi pca9655 is a 16 bit variant of the On Semi pca9654 GPIO expander, with 16 GPIOs and interrupt functionality. Signed-off-by: Peter Robinson <pbrobinson@gmail.com> [Bartosz: fixed indentation as noted by Andy] Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Diffstat (limited to 'drivers/gpio')
-rw-r--r--drivers/gpio/gpio-pca953x.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c
index c91d05651596..f5cfc0698799 100644
--- a/drivers/gpio/gpio-pca953x.c
+++ b/drivers/gpio/gpio-pca953x.c
@@ -1241,6 +1241,7 @@ static const struct of_device_id pca953x_dt_ids[] = {
{ .compatible = "onnn,cat9554", .data = OF_953X( 8, PCA_INT), },
{ .compatible = "onnn,pca9654", .data = OF_953X( 8, PCA_INT), },
+ { .compatible = "onnn,pca9655", .data = OF_953X(16, PCA_INT), },
{ .compatible = "exar,xra1202", .data = OF_953X( 8, 0), },
{ }