diff options
Diffstat (limited to 'drivers/video/backlight/platform_lcd.c')
-rw-r--r-- | drivers/video/backlight/platform_lcd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/backlight/platform_lcd.c b/drivers/video/backlight/platform_lcd.c index ca4f5d70fe10..894bfc5ce422 100644 --- a/drivers/video/backlight/platform_lcd.c +++ b/drivers/video/backlight/platform_lcd.c | |||
@@ -73,7 +73,7 @@ static struct lcd_ops platform_lcd_ops = { | |||
73 | .check_fb = platform_lcd_match, | 73 | .check_fb = platform_lcd_match, |
74 | }; | 74 | }; |
75 | 75 | ||
76 | static int __devinit platform_lcd_probe(struct platform_device *pdev) | 76 | static int platform_lcd_probe(struct platform_device *pdev) |
77 | { | 77 | { |
78 | struct plat_lcd_data *pdata; | 78 | struct plat_lcd_data *pdata; |
79 | struct platform_lcd *plcd; | 79 | struct platform_lcd *plcd; |
@@ -112,7 +112,7 @@ static int __devinit platform_lcd_probe(struct platform_device *pdev) | |||
112 | return err; | 112 | return err; |
113 | } | 113 | } |
114 | 114 | ||
115 | static int __devexit platform_lcd_remove(struct platform_device *pdev) | 115 | static int platform_lcd_remove(struct platform_device *pdev) |
116 | { | 116 | { |
117 | struct platform_lcd *plcd = platform_get_drvdata(pdev); | 117 | struct platform_lcd *plcd = platform_get_drvdata(pdev); |
118 | 118 | ||
@@ -164,7 +164,7 @@ static struct platform_driver platform_lcd_driver = { | |||
164 | .of_match_table = of_match_ptr(platform_lcd_of_match), | 164 | .of_match_table = of_match_ptr(platform_lcd_of_match), |
165 | }, | 165 | }, |
166 | .probe = platform_lcd_probe, | 166 | .probe = platform_lcd_probe, |
167 | .remove = __devexit_p(platform_lcd_remove), | 167 | .remove = platform_lcd_remove, |
168 | }; | 168 | }; |
169 | 169 | ||
170 | module_platform_driver(platform_lcd_driver); | 170 | module_platform_driver(platform_lcd_driver); |