diff options
Diffstat (limited to 'drivers/video/backlight/corgi_lcd.c')
-rw-r--r-- | drivers/video/backlight/corgi_lcd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/backlight/corgi_lcd.c b/drivers/video/backlight/corgi_lcd.c index c781768ba892..eaaebf21993e 100644 --- a/drivers/video/backlight/corgi_lcd.c +++ b/drivers/video/backlight/corgi_lcd.c | |||
@@ -529,7 +529,7 @@ static int setup_gpio_backlight(struct corgi_lcd *lcd, | |||
529 | return 0; | 529 | return 0; |
530 | } | 530 | } |
531 | 531 | ||
532 | static int __devinit corgi_lcd_probe(struct spi_device *spi) | 532 | static int corgi_lcd_probe(struct spi_device *spi) |
533 | { | 533 | { |
534 | struct backlight_properties props; | 534 | struct backlight_properties props; |
535 | struct corgi_lcd_platform_data *pdata = spi->dev.platform_data; | 535 | struct corgi_lcd_platform_data *pdata = spi->dev.platform_data; |
@@ -590,7 +590,7 @@ err_unregister_lcd: | |||
590 | return ret; | 590 | return ret; |
591 | } | 591 | } |
592 | 592 | ||
593 | static int __devexit corgi_lcd_remove(struct spi_device *spi) | 593 | static int corgi_lcd_remove(struct spi_device *spi) |
594 | { | 594 | { |
595 | struct corgi_lcd *lcd = dev_get_drvdata(&spi->dev); | 595 | struct corgi_lcd *lcd = dev_get_drvdata(&spi->dev); |
596 | 596 | ||
@@ -611,7 +611,7 @@ static struct spi_driver corgi_lcd_driver = { | |||
611 | .owner = THIS_MODULE, | 611 | .owner = THIS_MODULE, |
612 | }, | 612 | }, |
613 | .probe = corgi_lcd_probe, | 613 | .probe = corgi_lcd_probe, |
614 | .remove = __devexit_p(corgi_lcd_remove), | 614 | .remove = corgi_lcd_remove, |
615 | .suspend = corgi_lcd_suspend, | 615 | .suspend = corgi_lcd_suspend, |
616 | .resume = corgi_lcd_resume, | 616 | .resume = corgi_lcd_resume, |
617 | }; | 617 | }; |