diff options
| -rw-r--r-- | drivers/video/pmagb-b-fb.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/video/pmagb-b-fb.c b/drivers/video/pmagb-b-fb.c index 2de0806421b4..22fcb9a3d5c0 100644 --- a/drivers/video/pmagb-b-fb.c +++ b/drivers/video/pmagb-b-fb.c | |||
| @@ -45,7 +45,7 @@ struct pmagbbfb_par { | |||
| 45 | }; | 45 | }; |
| 46 | 46 | ||
| 47 | 47 | ||
| 48 | static struct fb_var_screeninfo pmagbbfb_defined __initdata = { | 48 | static struct fb_var_screeninfo pmagbbfb_defined __devinitdata = { |
| 49 | .bits_per_pixel = 8, | 49 | .bits_per_pixel = 8, |
| 50 | .red.length = 8, | 50 | .red.length = 8, |
| 51 | .green.length = 8, | 51 | .green.length = 8, |
| @@ -58,7 +58,7 @@ static struct fb_var_screeninfo pmagbbfb_defined __initdata = { | |||
| 58 | .vmode = FB_VMODE_NONINTERLACED, | 58 | .vmode = FB_VMODE_NONINTERLACED, |
| 59 | }; | 59 | }; |
| 60 | 60 | ||
| 61 | static struct fb_fix_screeninfo pmagbbfb_fix __initdata = { | 61 | static struct fb_fix_screeninfo pmagbbfb_fix __devinitdata = { |
| 62 | .id = "PMAGB-BA", | 62 | .id = "PMAGB-BA", |
| 63 | .smem_len = (2048 * 1024), | 63 | .smem_len = (2048 * 1024), |
| 64 | .type = FB_TYPE_PACKED_PIXELS, | 64 | .type = FB_TYPE_PACKED_PIXELS, |
| @@ -148,7 +148,7 @@ static void __init pmagbbfb_erase_cursor(struct fb_info *info) | |||
| 148 | /* | 148 | /* |
| 149 | * Set up screen parameters. | 149 | * Set up screen parameters. |
| 150 | */ | 150 | */ |
| 151 | static void __init pmagbbfb_screen_setup(struct fb_info *info) | 151 | static void __devinit pmagbbfb_screen_setup(struct fb_info *info) |
| 152 | { | 152 | { |
| 153 | struct pmagbbfb_par *par = info->par; | 153 | struct pmagbbfb_par *par = info->par; |
| 154 | 154 | ||
| @@ -180,9 +180,9 @@ static void __init pmagbbfb_screen_setup(struct fb_info *info) | |||
| 180 | /* | 180 | /* |
| 181 | * Determine oscillator configuration. | 181 | * Determine oscillator configuration. |
| 182 | */ | 182 | */ |
| 183 | static void __init pmagbbfb_osc_setup(struct fb_info *info) | 183 | static void __devinit pmagbbfb_osc_setup(struct fb_info *info) |
| 184 | { | 184 | { |
| 185 | static unsigned int pmagbbfb_freqs[] __initdata = { | 185 | static unsigned int pmagbbfb_freqs[] __devinitdata = { |
| 186 | 130808, 119843, 104000, 92980, 74370, 72800, | 186 | 130808, 119843, 104000, 92980, 74370, 72800, |
| 187 | 69197, 66000, 65000, 50350, 36000, 32000, 25175 | 187 | 69197, 66000, 65000, 50350, 36000, 32000, 25175 |
| 188 | }; | 188 | }; |
| @@ -247,7 +247,7 @@ static void __init pmagbbfb_osc_setup(struct fb_info *info) | |||
| 247 | }; | 247 | }; |
| 248 | 248 | ||
| 249 | 249 | ||
| 250 | static int __init pmagbbfb_probe(struct device *dev) | 250 | static int __devinit pmagbbfb_probe(struct device *dev) |
| 251 | { | 251 | { |
| 252 | struct tc_dev *tdev = to_tc_dev(dev); | 252 | struct tc_dev *tdev = to_tc_dev(dev); |
| 253 | resource_size_t start, len; | 253 | resource_size_t start, len; |
