Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 198345
b: refs/heads/master
c: 0d5b026
h: refs/heads/master
i:
  198343: 575ef65
v: v3
  • Loading branch information
Henrik Kretzschmar authored and Linus Torvalds committed May 25, 2010
1 parent 6846c43 commit ef9e023
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: a8ce4be7d5b99a6338e695b26358abca329735c1
refs/heads/master: 0d5b02641faade3dfd376abdcffbd8ccb03c7a91
10 changes: 5 additions & 5 deletions trunk/drivers/video/sgivwfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static int ywrap = 0;

static int flatpanel_id = -1;

static struct fb_fix_screeninfo sgivwfb_fix __initdata = {
static struct fb_fix_screeninfo sgivwfb_fix __devinitdata = {
.id = "SGI Vis WS FB",
.type = FB_TYPE_PACKED_PIXELS,
.visual = FB_VISUAL_PSEUDOCOLOR,
Expand All @@ -57,7 +57,7 @@ static struct fb_fix_screeninfo sgivwfb_fix __initdata = {
.line_length = 640,
};

static struct fb_var_screeninfo sgivwfb_var __initdata = {
static struct fb_var_screeninfo sgivwfb_var __devinitdata = {
/* 640x480, 8 bpp */
.xres = 640,
.yres = 480,
Expand All @@ -79,7 +79,7 @@ static struct fb_var_screeninfo sgivwfb_var __initdata = {
.vmode = FB_VMODE_NONINTERLACED
};

static struct fb_var_screeninfo sgivwfb_var1600sw __initdata = {
static struct fb_var_screeninfo sgivwfb_var1600sw __devinitdata = {
/* 1600x1024, 8 bpp */
.xres = 1600,
.yres = 1024,
Expand Down Expand Up @@ -825,7 +825,7 @@ static int __devinit sgivwfb_probe(struct platform_device *dev)
return -ENXIO;
}

static int sgivwfb_remove(struct platform_device *dev)
static int __devexit sgivwfb_remove(struct platform_device *dev)
{
struct fb_info *info = platform_get_drvdata(dev);

Expand All @@ -845,7 +845,7 @@ static int sgivwfb_remove(struct platform_device *dev)

static struct platform_driver sgivwfb_driver = {
.probe = sgivwfb_probe,
.remove = sgivwfb_remove,
.remove = __devexit_p(sgivwfb_remove),
.driver = {
.name = "sgivwfb",
},
Expand Down

0 comments on commit ef9e023

Please sign in to comment.