diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/efifb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/efifb.c b/drivers/video/efifb.c index 4a56f46af40a..815f84b07933 100644 --- a/drivers/video/efifb.c +++ b/drivers/video/efifb.c | |||
@@ -16,7 +16,7 @@ | |||
16 | 16 | ||
17 | #include <video/vga.h> | 17 | #include <video/vga.h> |
18 | 18 | ||
19 | static struct fb_var_screeninfo efifb_defined __initdata = { | 19 | static struct fb_var_screeninfo efifb_defined __devinitdata = { |
20 | .activate = FB_ACTIVATE_NOW, | 20 | .activate = FB_ACTIVATE_NOW, |
21 | .height = -1, | 21 | .height = -1, |
22 | .width = -1, | 22 | .width = -1, |
@@ -27,7 +27,7 @@ static struct fb_var_screeninfo efifb_defined __initdata = { | |||
27 | .vmode = FB_VMODE_NONINTERLACED, | 27 | .vmode = FB_VMODE_NONINTERLACED, |
28 | }; | 28 | }; |
29 | 29 | ||
30 | static struct fb_fix_screeninfo efifb_fix __initdata = { | 30 | static struct fb_fix_screeninfo efifb_fix __devinitdata = { |
31 | .id = "EFI VGA", | 31 | .id = "EFI VGA", |
32 | .type = FB_TYPE_PACKED_PIXELS, | 32 | .type = FB_TYPE_PACKED_PIXELS, |
33 | .accel = FB_ACCEL_NONE, | 33 | .accel = FB_ACCEL_NONE, |
@@ -59,7 +59,7 @@ static struct efifb_dmi_info { | |||
59 | int stride; | 59 | int stride; |
60 | int width; | 60 | int width; |
61 | int height; | 61 | int height; |
62 | } dmi_list[] = { | 62 | } dmi_list[] __initdata = { |
63 | [M_I17] = { "i17", 0x80010000, 1472 * 4, 1440, 900 }, | 63 | [M_I17] = { "i17", 0x80010000, 1472 * 4, 1440, 900 }, |
64 | [M_I20] = { "i20", 0x80010000, 1728 * 4, 1680, 1050 }, /* guess */ | 64 | [M_I20] = { "i20", 0x80010000, 1728 * 4, 1680, 1050 }, /* guess */ |
65 | [M_I20_SR] = { "imac7", 0x40010000, 1728 * 4, 1680, 1050 }, | 65 | [M_I20_SR] = { "imac7", 0x40010000, 1728 * 4, 1680, 1050 }, |
@@ -83,7 +83,7 @@ static int set_system(const struct dmi_system_id *id); | |||
83 | DMI_MATCH(DMI_PRODUCT_NAME, name) }, \ | 83 | DMI_MATCH(DMI_PRODUCT_NAME, name) }, \ |
84 | &dmi_list[enumid] } | 84 | &dmi_list[enumid] } |
85 | 85 | ||
86 | static struct dmi_system_id __initdata dmi_system_table[] = { | 86 | static const struct dmi_system_id dmi_system_table[] __initconst = { |
87 | EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "iMac4,1", M_I17), | 87 | EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "iMac4,1", M_I17), |
88 | /* At least one of these two will be right; maybe both? */ | 88 | /* At least one of these two will be right; maybe both? */ |
89 | EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "iMac5,1", M_I20), | 89 | EFIFB_DMI_SYSTEM_ID("Apple Computer, Inc.", "iMac5,1", M_I20), |