diff options
Diffstat (limited to 'drivers/video/q40fb.c')
-rw-r--r-- | drivers/video/q40fb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/q40fb.c b/drivers/video/q40fb.c index a104e8cd2f54..d44c7351de0f 100644 --- a/drivers/video/q40fb.c +++ b/drivers/video/q40fb.c | |||
@@ -27,7 +27,7 @@ | |||
27 | 27 | ||
28 | #define Q40_PHYS_SCREEN_ADDR 0xFE800000 | 28 | #define Q40_PHYS_SCREEN_ADDR 0xFE800000 |
29 | 29 | ||
30 | static struct fb_fix_screeninfo q40fb_fix __devinitdata = { | 30 | static struct fb_fix_screeninfo q40fb_fix = { |
31 | .id = "Q40", | 31 | .id = "Q40", |
32 | .smem_len = 1024*1024, | 32 | .smem_len = 1024*1024, |
33 | .type = FB_TYPE_PACKED_PIXELS, | 33 | .type = FB_TYPE_PACKED_PIXELS, |
@@ -36,7 +36,7 @@ static struct fb_fix_screeninfo q40fb_fix __devinitdata = { | |||
36 | .accel = FB_ACCEL_NONE, | 36 | .accel = FB_ACCEL_NONE, |
37 | }; | 37 | }; |
38 | 38 | ||
39 | static struct fb_var_screeninfo q40fb_var __devinitdata = { | 39 | static struct fb_var_screeninfo q40fb_var = { |
40 | .xres = 1024, | 40 | .xres = 1024, |
41 | .yres = 512, | 41 | .yres = 512, |
42 | .xres_virtual = 1024, | 42 | .xres_virtual = 1024, |
@@ -83,7 +83,7 @@ static struct fb_ops q40fb_ops = { | |||
83 | .fb_imageblit = cfb_imageblit, | 83 | .fb_imageblit = cfb_imageblit, |
84 | }; | 84 | }; |
85 | 85 | ||
86 | static int __devinit q40fb_probe(struct platform_device *dev) | 86 | static int q40fb_probe(struct platform_device *dev) |
87 | { | 87 | { |
88 | struct fb_info *info; | 88 | struct fb_info *info; |
89 | 89 | ||