diff options
Diffstat (limited to 'drivers/input/touchscreen/cyttsp_spi.c')
-rw-r--r-- | drivers/input/touchscreen/cyttsp_spi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/touchscreen/cyttsp_spi.c b/drivers/input/touchscreen/cyttsp_spi.c index 9f263410407..638e20310f1 100644 --- a/drivers/input/touchscreen/cyttsp_spi.c +++ b/drivers/input/touchscreen/cyttsp_spi.c | |||
@@ -147,7 +147,7 @@ static const struct cyttsp_bus_ops cyttsp_spi_bus_ops = { | |||
147 | .read = cyttsp_spi_read_block_data, | 147 | .read = cyttsp_spi_read_block_data, |
148 | }; | 148 | }; |
149 | 149 | ||
150 | static int __devinit cyttsp_spi_probe(struct spi_device *spi) | 150 | static int cyttsp_spi_probe(struct spi_device *spi) |
151 | { | 151 | { |
152 | struct cyttsp *ts; | 152 | struct cyttsp *ts; |
153 | int error; | 153 | int error; |
@@ -172,7 +172,7 @@ static int __devinit cyttsp_spi_probe(struct spi_device *spi) | |||
172 | return 0; | 172 | return 0; |
173 | } | 173 | } |
174 | 174 | ||
175 | static int __devexit cyttsp_spi_remove(struct spi_device *spi) | 175 | static int cyttsp_spi_remove(struct spi_device *spi) |
176 | { | 176 | { |
177 | struct cyttsp *ts = spi_get_drvdata(spi); | 177 | struct cyttsp *ts = spi_get_drvdata(spi); |
178 | 178 | ||
@@ -188,7 +188,7 @@ static struct spi_driver cyttsp_spi_driver = { | |||
188 | .pm = &cyttsp_pm_ops, | 188 | .pm = &cyttsp_pm_ops, |
189 | }, | 189 | }, |
190 | .probe = cyttsp_spi_probe, | 190 | .probe = cyttsp_spi_probe, |
191 | .remove = __devexit_p(cyttsp_spi_remove), | 191 | .remove = cyttsp_spi_remove, |
192 | }; | 192 | }; |
193 | 193 | ||
194 | module_spi_driver(cyttsp_spi_driver); | 194 | module_spi_driver(cyttsp_spi_driver); |