aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-pca953x.c
diff options
context:
space:
mode:
authorAaron Sierra <asierra@xes-inc.com>2014-02-07 17:36:21 -0500
committerLinus Walleij <linus.walleij@linaro.org>2014-02-13 08:02:19 -0500
commite73760a60582b667cfe6d2ba70b74d5297419c42 (patch)
tree116344bd48d3804ef51c64eee368c0880112a245 /drivers/gpio/gpio-pca953x.c
parenteb32b5aae92176e7a00411082955dab8c62761ee (diff)
gpio: pca953x: Add Exar XRA1202
Add Exar XRA1202 8-bit GPIO expander to supported list. Signed-off-by: Aaron Sierra <asierra@xes-inc.com> Acked-by: Graeme Smecher <gsmecher@threespeedlogic.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-pca953x.c')
-rw-r--r--drivers/gpio/gpio-pca953x.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c
index dbc95bc72641..948a0741c221 100644
--- a/drivers/gpio/gpio-pca953x.c
+++ b/drivers/gpio/gpio-pca953x.c
@@ -69,6 +69,7 @@ static const struct i2c_device_id pca953x_id[] = {
69 { "tca6408", 8 | PCA953X_TYPE | PCA_INT, }, 69 { "tca6408", 8 | PCA953X_TYPE | PCA_INT, },
70 { "tca6416", 16 | PCA953X_TYPE | PCA_INT, }, 70 { "tca6416", 16 | PCA953X_TYPE | PCA_INT, },
71 { "tca6424", 24 | PCA953X_TYPE | PCA_INT, }, 71 { "tca6424", 24 | PCA953X_TYPE | PCA_INT, },
72 { "xra1202", 8 | PCA953X_TYPE },
72 { } 73 { }
73}; 74};
74MODULE_DEVICE_TABLE(i2c, pca953x_id); 75MODULE_DEVICE_TABLE(i2c, pca953x_id);
@@ -824,6 +825,8 @@ static const struct of_device_id pca953x_dt_ids[] = {
824 { .compatible = "ti,tca6408", }, 825 { .compatible = "ti,tca6408", },
825 { .compatible = "ti,tca6416", }, 826 { .compatible = "ti,tca6416", },
826 { .compatible = "ti,tca6424", }, 827 { .compatible = "ti,tca6424", },
828
829 { .compatible = "exar,xra1202", },
827 { } 830 { }
828}; 831};
829 832