From: Jingoo Han Date: Wed, 7 May 2014 19:59:47 +0000 (-0700) Subject: Input: imx_keypad - make of_device_id array const X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=27ec39c0770d13f7f38b092c5f7b9de79f88a911;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git 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 Signed-off-by: Dmitry Torokhov --- 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 */ } };