diff options
Diffstat (limited to 'drivers/video/backlight/vgg2432a4.c')
-rw-r--r-- | drivers/video/backlight/vgg2432a4.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/backlight/vgg2432a4.c b/drivers/video/backlight/vgg2432a4.c index b617fae9aa26..712b0acfd339 100644 --- a/drivers/video/backlight/vgg2432a4.c +++ b/drivers/video/backlight/vgg2432a4.c | |||
@@ -227,7 +227,7 @@ static struct ili9320_client vgg2432a4_client = { | |||
227 | 227 | ||
228 | /* Device probe */ | 228 | /* Device probe */ |
229 | 229 | ||
230 | static int __devinit vgg2432a4_probe(struct spi_device *spi) | 230 | static int vgg2432a4_probe(struct spi_device *spi) |
231 | { | 231 | { |
232 | int ret; | 232 | int ret; |
233 | 233 | ||
@@ -240,7 +240,7 @@ static int __devinit vgg2432a4_probe(struct spi_device *spi) | |||
240 | return 0; | 240 | return 0; |
241 | } | 241 | } |
242 | 242 | ||
243 | static int __devexit vgg2432a4_remove(struct spi_device *spi) | 243 | static int vgg2432a4_remove(struct spi_device *spi) |
244 | { | 244 | { |
245 | return ili9320_remove(dev_get_drvdata(&spi->dev)); | 245 | return ili9320_remove(dev_get_drvdata(&spi->dev)); |
246 | } | 246 | } |
@@ -256,7 +256,7 @@ static struct spi_driver vgg2432a4_driver = { | |||
256 | .owner = THIS_MODULE, | 256 | .owner = THIS_MODULE, |
257 | }, | 257 | }, |
258 | .probe = vgg2432a4_probe, | 258 | .probe = vgg2432a4_probe, |
259 | .remove = __devexit_p(vgg2432a4_remove), | 259 | .remove = vgg2432a4_remove, |
260 | .shutdown = vgg2432a4_shutdown, | 260 | .shutdown = vgg2432a4_shutdown, |
261 | .suspend = vgg2432a4_suspend, | 261 | .suspend = vgg2432a4_suspend, |
262 | .resume = vgg2432a4_resume, | 262 | .resume = vgg2432a4_resume, |