diff options
author | Axel Lin | 2011-07-13 00:04:36 -0700 |
---|---|---|
committer | Dmitry Torokhov | 2011-07-13 00:08:24 -0700 |
commit | d448303a77d8925fd06e7b2837bd1826e340bb02 (patch) | |
tree | bd440b087eed8352ec1dc9f4317eba7d5dea27cd /drivers | |
parent | 21184c4efbba7b7959c7868cf2b99f43f29fc199 (diff) |
Input: cy8ctmg110_ts - constify i2c_device_id table
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/touchscreen/cy8ctmg110_ts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/cy8ctmg110_ts.c b/drivers/input/touchscreen/cy8ctmg110_ts.c index b3fdd1361c36..ecdaae5f06c9 100644 --- a/drivers/input/touchscreen/cy8ctmg110_ts.c +++ b/drivers/input/touchscreen/cy8ctmg110_ts.c @@ -328,7 +328,7 @@ static int __devexit cy8ctmg110_remove(struct i2c_client *client) return 0; } -static struct i2c_device_id cy8ctmg110_idtable[] = { +static const struct i2c_device_id cy8ctmg110_idtable[] = { { CY8CTMG110_DRIVER_NAME, 1 }, { } }; |