diff options
Diffstat (limited to 'drivers/video/wm8505fb.c')
-rw-r--r-- | drivers/video/wm8505fb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/wm8505fb.c b/drivers/video/wm8505fb.c index 77539c1b56a0..4dd0580f96fd 100644 --- a/drivers/video/wm8505fb.c +++ b/drivers/video/wm8505fb.c | |||
@@ -260,7 +260,7 @@ static struct fb_ops wm8505fb_ops = { | |||
260 | .fb_blank = wm8505fb_blank, | 260 | .fb_blank = wm8505fb_blank, |
261 | }; | 261 | }; |
262 | 262 | ||
263 | static int __devinit wm8505fb_probe(struct platform_device *pdev) | 263 | static int wm8505fb_probe(struct platform_device *pdev) |
264 | { | 264 | { |
265 | struct wm8505fb_info *fbi; | 265 | struct wm8505fb_info *fbi; |
266 | struct resource *res; | 266 | struct resource *res; |
@@ -431,7 +431,7 @@ failed: | |||
431 | return ret; | 431 | return ret; |
432 | } | 432 | } |
433 | 433 | ||
434 | static int __devexit wm8505fb_remove(struct platform_device *pdev) | 434 | static int wm8505fb_remove(struct platform_device *pdev) |
435 | { | 435 | { |
436 | struct wm8505fb_info *fbi = platform_get_drvdata(pdev); | 436 | struct wm8505fb_info *fbi = platform_get_drvdata(pdev); |
437 | struct resource *res; | 437 | struct resource *res; |
@@ -462,7 +462,7 @@ static const struct of_device_id wmt_dt_ids[] = { | |||
462 | 462 | ||
463 | static struct platform_driver wm8505fb_driver = { | 463 | static struct platform_driver wm8505fb_driver = { |
464 | .probe = wm8505fb_probe, | 464 | .probe = wm8505fb_probe, |
465 | .remove = __devexit_p(wm8505fb_remove), | 465 | .remove = wm8505fb_remove, |
466 | .driver = { | 466 | .driver = { |
467 | .owner = THIS_MODULE, | 467 | .owner = THIS_MODULE, |
468 | .name = DRIVER_NAME, | 468 | .name = DRIVER_NAME, |