From: Jingoo Han Date: Wed, 7 May 2014 19:58:06 +0000 (-0700) Subject: Input: gpio_keys - make of_device_id array const X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=22daae31ddc09423f512e8d68f1d92af03935ae8;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git Input: gpio_keys - 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/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c index 52dc872c23c0..af85218506c1 100644 --- a/drivers/input/keyboard/gpio_keys.c +++ b/drivers/input/keyboard/gpio_keys.c @@ -646,7 +646,7 @@ gpio_keys_get_devtree_pdata(struct device *dev) return pdata; } -static struct of_device_id gpio_keys_of_match[] = { +static const struct of_device_id gpio_keys_of_match[] = { { .compatible = "gpio-keys", }, { }, };