diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-05-07 18:03:30 +0900 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-05-09 10:57:36 +0200 |
commit | f77b644859599ec77220b9c4d061ed71d2751107 (patch) | |
tree | d1e864169cd506cb181801286699d071275746d2 | |
parent | 50908d61ea483e0670768a712c166c3e4b2a30a3 (diff) | |
download | linux-f77b644859599ec77220b9c4d061ed71d2751107.tar.bz2 |
gpio: grgpio: Make of_device_id array const
Make of_device_id array const, because all OF functions
handle it as const.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Andreas Larsson <andreas@gaisler.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpio-grgpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-grgpio.c b/drivers/gpio/gpio-grgpio.c index 84d2478ec294..3c3f515b7916 100644 --- a/drivers/gpio/gpio-grgpio.c +++ b/drivers/gpio/gpio-grgpio.c @@ -481,7 +481,7 @@ out: return ret; } -static struct of_device_id grgpio_match[] = { +static const struct of_device_id grgpio_match[] = { {.name = "GAISLER_GPIO"}, {.name = "01_01a"}, {}, |