diff options
Diffstat (limited to 'drivers/video/backlight/adp5520_bl.c')
-rw-r--r-- | drivers/video/backlight/adp5520_bl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/backlight/adp5520_bl.c b/drivers/video/backlight/adp5520_bl.c index df5db99af23d..a1e41d4faa71 100644 --- a/drivers/video/backlight/adp5520_bl.c +++ b/drivers/video/backlight/adp5520_bl.c | |||
@@ -282,7 +282,7 @@ static const struct attribute_group adp5520_bl_attr_group = { | |||
282 | .attrs = adp5520_bl_attributes, | 282 | .attrs = adp5520_bl_attributes, |
283 | }; | 283 | }; |
284 | 284 | ||
285 | static int __devinit adp5520_bl_probe(struct platform_device *pdev) | 285 | static int adp5520_bl_probe(struct platform_device *pdev) |
286 | { | 286 | { |
287 | struct backlight_properties props; | 287 | struct backlight_properties props; |
288 | struct backlight_device *bl; | 288 | struct backlight_device *bl; |
@@ -333,7 +333,7 @@ static int __devinit adp5520_bl_probe(struct platform_device *pdev) | |||
333 | return ret; | 333 | return ret; |
334 | } | 334 | } |
335 | 335 | ||
336 | static int __devexit adp5520_bl_remove(struct platform_device *pdev) | 336 | static int adp5520_bl_remove(struct platform_device *pdev) |
337 | { | 337 | { |
338 | struct backlight_device *bl = platform_get_drvdata(pdev); | 338 | struct backlight_device *bl = platform_get_drvdata(pdev); |
339 | struct adp5520_bl *data = bl_get_data(bl); | 339 | struct adp5520_bl *data = bl_get_data(bl); |
@@ -375,7 +375,7 @@ static struct platform_driver adp5520_bl_driver = { | |||
375 | .owner = THIS_MODULE, | 375 | .owner = THIS_MODULE, |
376 | }, | 376 | }, |
377 | .probe = adp5520_bl_probe, | 377 | .probe = adp5520_bl_probe, |
378 | .remove = __devexit_p(adp5520_bl_remove), | 378 | .remove = adp5520_bl_remove, |
379 | .suspend = adp5520_bl_suspend, | 379 | .suspend = adp5520_bl_suspend, |
380 | .resume = adp5520_bl_resume, | 380 | .resume = adp5520_bl_resume, |
381 | }; | 381 | }; |