diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-18 17:10:41 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-08-18 17:15:10 -0700 |
commit | fe11d25e365d56d5a958589a2ff004b2ac538e11 (patch) | |
tree | d7d6d87bce173b24286b2f4818a2c415a2ca9b1b /drivers/input | |
parent | a7082ac4705b5abd8a61db4b1650765919cc718b (diff) | |
download | linux-stable-fe11d25e365d56d5a958589a2ff004b2ac538e11.tar.gz linux-stable-fe11d25e365d56d5a958589a2ff004b2ac538e11.tar.bz2 linux-stable-fe11d25e365d56d5a958589a2ff004b2ac538e11.zip |
Input: dynapro - constify serio_device_id
serio_device_id are not supposed to change at runtime. All functions
working with serio_device_id provided by <linux/serio.h> work with
const serio_device_id. So mark the non-const structs as const.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/touchscreen/dynapro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/dynapro.c b/drivers/input/touchscreen/dynapro.c index 86237a910876..5b1b66fffbe3 100644 --- a/drivers/input/touchscreen/dynapro.c +++ b/drivers/input/touchscreen/dynapro.c @@ -164,7 +164,7 @@ static int dynapro_connect(struct serio *serio, struct serio_driver *drv) * The serio driver structure. */ -static struct serio_device_id dynapro_serio_ids[] = { +static const struct serio_device_id dynapro_serio_ids[] = { { .type = SERIO_RS232, .proto = SERIO_DYNAPRO, |