diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-05-07 12:59:47 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2014-05-14 16:39:54 -0700 |
commit | 27ec39c0770d13f7f38b092c5f7b9de79f88a911 (patch) | |
tree | 39392abf52bb9d6520886d3be810958d3b5c3711 /drivers/input | |
parent | 90c98ef50b1594a453e4e4b2c5b0ffc168477a2d (diff) | |
download | linux-stable-27ec39c0770d13f7f38b092c5f7b9de79f88a911.tar.gz linux-stable-27ec39c0770d13f7f38b092c5f7b9de79f88a911.tar.bz2 linux-stable-27ec39c0770d13f7f38b092c5f7b9de79f88a911.zip |
Input: imx_keypad - 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>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/keyboard/imx_keypad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/keyboard/imx_keypad.c b/drivers/input/keyboard/imx_keypad.c index 97ec33572e56..8280cb16260b 100644 --- a/drivers/input/keyboard/imx_keypad.c +++ b/drivers/input/keyboard/imx_keypad.c @@ -415,7 +415,7 @@ open_err: } #ifdef CONFIG_OF -static struct of_device_id imx_keypad_of_match[] = { +static const struct of_device_id imx_keypad_of_match[] = { { .compatible = "fsl,imx21-kpp", }, { /* sentinel */ } }; |