aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/touchscreen/da9052_tsi.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-11-24 00:38:25 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2012-11-24 03:05:19 -0500
commit5298cc4cc753bbe4c530b41341834f6ef3344d0d (patch)
tree5dde0337622144b635a7dc199844ed5376794b09 /drivers/input/touchscreen/da9052_tsi.c
parent78f50c246f4286d40a1f42fecc779d47e40503a2 (diff)
Input: remove use of __devinit
CONFIG_HOTPLUG is going away as an option so __devinit is no longer needed. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Javier Martinez Canillas <javier@dowhile0.org> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen/da9052_tsi.c')
-rw-r--r--drivers/input/touchscreen/da9052_tsi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/touchscreen/da9052_tsi.c b/drivers/input/touchscreen/da9052_tsi.c
index 5dfb39b21c90..8a493b962db3 100644
--- a/drivers/input/touchscreen/da9052_tsi.c
+++ b/drivers/input/touchscreen/da9052_tsi.c
@@ -143,7 +143,7 @@ static void da9052_ts_pen_work(struct work_struct *work)
143 } 143 }
144} 144}
145 145
146static int __devinit da9052_ts_configure_gpio(struct da9052 *da9052) 146static int da9052_ts_configure_gpio(struct da9052 *da9052)
147{ 147{
148 int error; 148 int error;
149 149
@@ -162,7 +162,7 @@ static int __devinit da9052_ts_configure_gpio(struct da9052 *da9052)
162 return 0; 162 return 0;
163} 163}
164 164
165static int __devinit da9052_configure_tsi(struct da9052_tsi *tsi) 165static int da9052_configure_tsi(struct da9052_tsi *tsi)
166{ 166{
167 int error; 167 int error;
168 168
@@ -229,7 +229,7 @@ static void da9052_ts_input_close(struct input_dev *input_dev)
229 da9052_reg_update(tsi->da9052, DA9052_TSI_CONT_A_REG, 1 << 1, 0); 229 da9052_reg_update(tsi->da9052, DA9052_TSI_CONT_A_REG, 1 << 1, 0);
230} 230}
231 231
232static int __devinit da9052_ts_probe(struct platform_device *pdev) 232static int da9052_ts_probe(struct platform_device *pdev)
233{ 233{
234 struct da9052 *da9052; 234 struct da9052 *da9052;
235 struct da9052_tsi *tsi; 235 struct da9052_tsi *tsi;