diff options
author | Song Hui <hui.song_1@nxp.com> | 2019-08-08 18:16:28 +0800 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2019-08-23 09:38:06 +0200 |
commit | 7b732209eb5d78ab114ae5e2a480d7417f30a2b1 (patch) | |
tree | a838d31fd7d4784590e2b3a7f234a2e8e5da2e10 | |
parent | ff6cd68d6601f9aae3eccd691af68f47cf81ec7d (diff) | |
download | linux-7b732209eb5d78ab114ae5e2a480d7417f30a2b1.tar.gz linux-7b732209eb5d78ab114ae5e2a480d7417f30a2b1.tar.bz2 linux-7b732209eb5d78ab114ae5e2a480d7417f30a2b1.zip |
gpio: mpc8xxx: add ls1088a platform special function
ls1028a and ls1088a platform share common special function.
The gpio hardware what they use is the same version.
Signed-off-by: Song Hui <hui.song_1@nxp.com>
Link: https://lore.kernel.org/r/20190808101628.36782-3-hui.song_1@nxp.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpio-mpc8xxx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-mpc8xxx.c b/drivers/gpio/gpio-mpc8xxx.c index 1a680aa28769..16a47de29c94 100644 --- a/drivers/gpio/gpio-mpc8xxx.c +++ b/drivers/gpio/gpio-mpc8xxx.c @@ -319,6 +319,7 @@ static const struct of_device_id mpc8xxx_gpio_ids[] = { { .compatible = "fsl,mpc5125-gpio", .data = &mpc5125_gpio_devtype, }, { .compatible = "fsl,pq3-gpio", }, { .compatible = "fsl,ls1028a-gpio", .data = &ls1028a_gpio_devtype, }, + { .compatible = "fsl,ls1088a-gpio", .data = &ls1028a_gpio_devtype, }, { .compatible = "fsl,qoriq-gpio", }, {} }; |