diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-08-15 02:50:48 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-08-15 03:30:04 -0400 |
commit | f01868dcb13e7eb064910e8afe391c1846b9e73b (patch) | |
tree | dfed3258739fb8e93e30f230918a4c12bcd6c77d /drivers/input | |
parent | 3719b54bc62318db7dd8ac7c39a09dfb991a208f (diff) |
Input: htcpen - fix incorrect placement of __initdata
__initdata should be placed between the variable name and equal
sign for the variable to be placed in the intended section.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Pau Oliva Fora <pau@eslack.org>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/touchscreen/htcpen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/htcpen.c b/drivers/input/touchscreen/htcpen.c index 6c4fb8436957..66500852341b 100644 --- a/drivers/input/touchscreen/htcpen.c +++ b/drivers/input/touchscreen/htcpen.c | |||
@@ -221,7 +221,7 @@ static struct isa_driver htcpen_isa_driver = { | |||
221 | } | 221 | } |
222 | }; | 222 | }; |
223 | 223 | ||
224 | static struct dmi_system_id __initdata htcshift_dmi_table[] = { | 224 | static struct dmi_system_id htcshift_dmi_table[] __initdata = { |
225 | { | 225 | { |
226 | .ident = "Shift", | 226 | .ident = "Shift", |
227 | .matches = { | 227 | .matches = { |