diff options
Diffstat (limited to 'drivers/video/backlight/ams369fg06.c')
-rw-r--r-- | drivers/video/backlight/ams369fg06.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/backlight/ams369fg06.c b/drivers/video/backlight/ams369fg06.c index 3729238e7096..f57e1905236a 100644 --- a/drivers/video/backlight/ams369fg06.c +++ b/drivers/video/backlight/ams369fg06.c | |||
@@ -474,7 +474,7 @@ static const struct backlight_ops ams369fg06_backlight_ops = { | |||
474 | .update_status = ams369fg06_set_brightness, | 474 | .update_status = ams369fg06_set_brightness, |
475 | }; | 475 | }; |
476 | 476 | ||
477 | static int __devinit ams369fg06_probe(struct spi_device *spi) | 477 | static int ams369fg06_probe(struct spi_device *spi) |
478 | { | 478 | { |
479 | int ret = 0; | 479 | int ret = 0; |
480 | struct ams369fg06 *lcd = NULL; | 480 | struct ams369fg06 *lcd = NULL; |
@@ -548,7 +548,7 @@ out_lcd_unregister: | |||
548 | return ret; | 548 | return ret; |
549 | } | 549 | } |
550 | 550 | ||
551 | static int __devexit ams369fg06_remove(struct spi_device *spi) | 551 | static int ams369fg06_remove(struct spi_device *spi) |
552 | { | 552 | { |
553 | struct ams369fg06 *lcd = dev_get_drvdata(&spi->dev); | 553 | struct ams369fg06 *lcd = dev_get_drvdata(&spi->dev); |
554 | 554 | ||
@@ -617,7 +617,7 @@ static struct spi_driver ams369fg06_driver = { | |||
617 | .owner = THIS_MODULE, | 617 | .owner = THIS_MODULE, |
618 | }, | 618 | }, |
619 | .probe = ams369fg06_probe, | 619 | .probe = ams369fg06_probe, |
620 | .remove = __devexit_p(ams369fg06_remove), | 620 | .remove = ams369fg06_remove, |
621 | .shutdown = ams369fg06_shutdown, | 621 | .shutdown = ams369fg06_shutdown, |
622 | .suspend = ams369fg06_suspend, | 622 | .suspend = ams369fg06_suspend, |
623 | .resume = ams369fg06_resume, | 623 | .resume = ams369fg06_resume, |