diff options
Diffstat (limited to 'drivers/video/arcfb.c')
-rw-r--r-- | drivers/video/arcfb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/arcfb.c b/drivers/video/arcfb.c index 8d406fb689c1..f3d7440f0072 100644 --- a/drivers/video/arcfb.c +++ b/drivers/video/arcfb.c | |||
@@ -80,7 +80,7 @@ struct arcfb_par { | |||
80 | spinlock_t lock; | 80 | spinlock_t lock; |
81 | }; | 81 | }; |
82 | 82 | ||
83 | static struct fb_fix_screeninfo arcfb_fix __initdata = { | 83 | static struct fb_fix_screeninfo arcfb_fix __devinitdata = { |
84 | .id = "arcfb", | 84 | .id = "arcfb", |
85 | .type = FB_TYPE_PACKED_PIXELS, | 85 | .type = FB_TYPE_PACKED_PIXELS, |
86 | .visual = FB_VISUAL_MONO01, | 86 | .visual = FB_VISUAL_MONO01, |
@@ -90,7 +90,7 @@ static struct fb_fix_screeninfo arcfb_fix __initdata = { | |||
90 | .accel = FB_ACCEL_NONE, | 90 | .accel = FB_ACCEL_NONE, |
91 | }; | 91 | }; |
92 | 92 | ||
93 | static struct fb_var_screeninfo arcfb_var __initdata = { | 93 | static struct fb_var_screeninfo arcfb_var __devinitdata = { |
94 | .xres = 128, | 94 | .xres = 128, |
95 | .yres = 64, | 95 | .yres = 64, |
96 | .xres_virtual = 128, | 96 | .xres_virtual = 128, |
@@ -588,7 +588,7 @@ err: | |||
588 | return retval; | 588 | return retval; |
589 | } | 589 | } |
590 | 590 | ||
591 | static int arcfb_remove(struct platform_device *dev) | 591 | static int __devexit arcfb_remove(struct platform_device *dev) |
592 | { | 592 | { |
593 | struct fb_info *info = platform_get_drvdata(dev); | 593 | struct fb_info *info = platform_get_drvdata(dev); |
594 | 594 | ||
@@ -602,7 +602,7 @@ static int arcfb_remove(struct platform_device *dev) | |||
602 | 602 | ||
603 | static struct platform_driver arcfb_driver = { | 603 | static struct platform_driver arcfb_driver = { |
604 | .probe = arcfb_probe, | 604 | .probe = arcfb_probe, |
605 | .remove = arcfb_remove, | 605 | .remove = __devexit_p(arcfb_remove), |
606 | .driver = { | 606 | .driver = { |
607 | .name = "arcfb", | 607 | .name = "arcfb", |
608 | }, | 608 | }, |