diff options
Diffstat (limited to 'drivers/video/grvga.c')
-rw-r--r-- | drivers/video/grvga.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/video/grvga.c b/drivers/video/grvga.c index 5245f9a71892..861109e7de1b 100644 --- a/drivers/video/grvga.c +++ b/drivers/video/grvga.c | |||
@@ -70,7 +70,7 @@ static const struct fb_videomode grvga_modedb[] = { | |||
70 | } | 70 | } |
71 | }; | 71 | }; |
72 | 72 | ||
73 | static struct fb_fix_screeninfo grvga_fix __devinitdata = { | 73 | static struct fb_fix_screeninfo grvga_fix = { |
74 | .id = "AG SVGACTRL", | 74 | .id = "AG SVGACTRL", |
75 | .type = FB_TYPE_PACKED_PIXELS, | 75 | .type = FB_TYPE_PACKED_PIXELS, |
76 | .visual = FB_VISUAL_PSEUDOCOLOR, | 76 | .visual = FB_VISUAL_PSEUDOCOLOR, |
@@ -267,8 +267,8 @@ static struct fb_ops grvga_ops = { | |||
267 | .fb_imageblit = cfb_imageblit | 267 | .fb_imageblit = cfb_imageblit |
268 | }; | 268 | }; |
269 | 269 | ||
270 | static int __devinit grvga_parse_custom(char *options, | 270 | static int grvga_parse_custom(char *options, |
271 | struct fb_var_screeninfo *screendata) | 271 | struct fb_var_screeninfo *screendata) |
272 | { | 272 | { |
273 | char *this_opt; | 273 | char *this_opt; |
274 | int count = 0; | 274 | int count = 0; |
@@ -329,7 +329,7 @@ static int __devinit grvga_parse_custom(char *options, | |||
329 | return 0; | 329 | return 0; |
330 | } | 330 | } |
331 | 331 | ||
332 | static int __devinit grvga_probe(struct platform_device *dev) | 332 | static int grvga_probe(struct platform_device *dev) |
333 | { | 333 | { |
334 | struct fb_info *info; | 334 | struct fb_info *info; |
335 | int retval = -ENOMEM; | 335 | int retval = -ENOMEM; |
@@ -512,7 +512,7 @@ free_fb: | |||
512 | return retval; | 512 | return retval; |
513 | } | 513 | } |
514 | 514 | ||
515 | static int __devexit grvga_remove(struct platform_device *device) | 515 | static int grvga_remove(struct platform_device *device) |
516 | { | 516 | { |
517 | struct fb_info *info = dev_get_drvdata(&device->dev); | 517 | struct fb_info *info = dev_get_drvdata(&device->dev); |
518 | struct grvga_par *par = info->par; | 518 | struct grvga_par *par = info->par; |
@@ -554,7 +554,7 @@ static struct platform_driver grvga_driver = { | |||
554 | .of_match_table = svgactrl_of_match, | 554 | .of_match_table = svgactrl_of_match, |
555 | }, | 555 | }, |
556 | .probe = grvga_probe, | 556 | .probe = grvga_probe, |
557 | .remove = __devexit_p(grvga_remove), | 557 | .remove = grvga_remove, |
558 | }; | 558 | }; |
559 | 559 | ||
560 | 560 | ||