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>
This commit is contained in:

committed by
Dmitry Torokhov

parent
78f50c246f
commit
5298cc4cc7
@@ -143,7 +143,7 @@ static void da9052_ts_pen_work(struct work_struct *work)
|
||||
}
|
||||
}
|
||||
|
||||
static int __devinit da9052_ts_configure_gpio(struct da9052 *da9052)
|
||||
static int da9052_ts_configure_gpio(struct da9052 *da9052)
|
||||
{
|
||||
int error;
|
||||
|
||||
@@ -162,7 +162,7 @@ static int __devinit da9052_ts_configure_gpio(struct da9052 *da9052)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __devinit da9052_configure_tsi(struct da9052_tsi *tsi)
|
||||
static int da9052_configure_tsi(struct da9052_tsi *tsi)
|
||||
{
|
||||
int error;
|
||||
|
||||
@@ -229,7 +229,7 @@ static void da9052_ts_input_close(struct input_dev *input_dev)
|
||||
da9052_reg_update(tsi->da9052, DA9052_TSI_CONT_A_REG, 1 << 1, 0);
|
||||
}
|
||||
|
||||
static int __devinit da9052_ts_probe(struct platform_device *pdev)
|
||||
static int da9052_ts_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct da9052 *da9052;
|
||||
struct da9052_tsi *tsi;
|
||||
|
Reference in New Issue
Block a user