Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 201282
b: refs/heads/master
c: 5b1638d
h: refs/heads/master
v: v3
  • Loading branch information
Ralf Baechle committed Jul 26, 2010
1 parent 51756c8 commit 8142e34
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9625b51350ccb4db60b743f0d1e5ab696e77ef58
refs/heads/master: 5b1638d94080bb9b8dd9a458405502a50064ca56
12 changes: 6 additions & 6 deletions trunk/drivers/video/pmagb-b-fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ struct pmagbbfb_par {
};


static struct fb_var_screeninfo pmagbbfb_defined __initdata = {
static struct fb_var_screeninfo pmagbbfb_defined __devinitdata = {
.bits_per_pixel = 8,
.red.length = 8,
.green.length = 8,
Expand All @@ -58,7 +58,7 @@ static struct fb_var_screeninfo pmagbbfb_defined __initdata = {
.vmode = FB_VMODE_NONINTERLACED,
};

static struct fb_fix_screeninfo pmagbbfb_fix __initdata = {
static struct fb_fix_screeninfo pmagbbfb_fix __devinitdata = {
.id = "PMAGB-BA",
.smem_len = (2048 * 1024),
.type = FB_TYPE_PACKED_PIXELS,
Expand Down Expand Up @@ -148,7 +148,7 @@ static void __init pmagbbfb_erase_cursor(struct fb_info *info)
/*
* Set up screen parameters.
*/
static void __init pmagbbfb_screen_setup(struct fb_info *info)
static void __devinit pmagbbfb_screen_setup(struct fb_info *info)
{
struct pmagbbfb_par *par = info->par;

Expand Down Expand Up @@ -180,9 +180,9 @@ static void __init pmagbbfb_screen_setup(struct fb_info *info)
/*
* Determine oscillator configuration.
*/
static void __init pmagbbfb_osc_setup(struct fb_info *info)
static void __devinit pmagbbfb_osc_setup(struct fb_info *info)
{
static unsigned int pmagbbfb_freqs[] __initdata = {
static unsigned int pmagbbfb_freqs[] __devinitdata = {
130808, 119843, 104000, 92980, 74370, 72800,
69197, 66000, 65000, 50350, 36000, 32000, 25175
};
Expand Down Expand Up @@ -247,7 +247,7 @@ static void __init pmagbbfb_osc_setup(struct fb_info *info)
};


static int __init pmagbbfb_probe(struct device *dev)
static int __devinit pmagbbfb_probe(struct device *dev)
{
struct tc_dev *tdev = to_tc_dev(dev);
resource_size_t start, len;
Expand Down

0 comments on commit 8142e34

Please sign in to comment.