diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-24 06:31:00 +0100 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-11-24 09:04:08 +0100 |
commit | 78f50c246f4286d40a1f42fecc779d47e40503a2 (patch) | |
tree | afd39f280406671201b259f7bc6143d6ca1e26f8 /drivers/input/touchscreen/st1232.c | |
parent | Input: remove use of __devinitdata (diff) | |
download | linux-78f50c246f4286d40a1f42fecc779d47e40503a2.tar.xz linux-78f50c246f4286d40a1f42fecc779d47e40503a2.zip |
Input: remove use of __devinitconst
CONFIG_HOTPLUG is going away as an option so __devinitconst is no
longer needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen/st1232.c')
-rw-r--r-- | drivers/input/touchscreen/st1232.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/st1232.c b/drivers/input/touchscreen/st1232.c index 62a4b5d71643..5fa0ca346478 100644 --- a/drivers/input/touchscreen/st1232.c +++ b/drivers/input/touchscreen/st1232.c @@ -255,7 +255,7 @@ static const struct i2c_device_id st1232_ts_id[] = { MODULE_DEVICE_TABLE(i2c, st1232_ts_id); #ifdef CONFIG_OF -static const struct of_device_id st1232_ts_dt_ids[] __devinitconst = { +static const struct of_device_id st1232_ts_dt_ids[] = { { .compatible = "sitronix,st1232", }, { } }; |