diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-05-07 12:57:31 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2014-05-14 16:39:52 -0700 |
commit | af4cf6d38a045faa43e4d5585333aea028430a74 (patch) | |
tree | e6bce5e70ea3c8e3d9bcce392dbe119b63a9b1d0 | |
parent | c95dc0114bb66c7cbfa91b7bea898e07fcff5157 (diff) | |
download | linux-stable-af4cf6d38a045faa43e4d5585333aea028430a74.tar.gz linux-stable-af4cf6d38a045faa43e4d5585333aea028430a74.tar.bz2 linux-stable-af4cf6d38a045faa43e4d5585333aea028430a74.zip |
Input: clps711x-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>
-rw-r--r-- | drivers/input/keyboard/clps711x-keypad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/keyboard/clps711x-keypad.c b/drivers/input/keyboard/clps711x-keypad.c index 3955aecee44b..552b65c6e6b0 100644 --- a/drivers/input/keyboard/clps711x-keypad.c +++ b/drivers/input/keyboard/clps711x-keypad.c @@ -185,7 +185,7 @@ static int clps711x_keypad_remove(struct platform_device *pdev) return 0; } -static struct of_device_id clps711x_keypad_of_match[] = { +static const struct of_device_id clps711x_keypad_of_match[] = { { .compatible = "cirrus,clps711x-keypad", }, { } }; |