Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 198343
b: refs/heads/master
c: e88a0f4
h: refs/heads/master
i:
  198341: 046c014
  198339: a77702a
  198335: c65c4f4
v: v3
  • Loading branch information
Henrik Kretzschmar authored and Linus Torvalds committed May 25, 2010
1 parent ffa2a6a commit 575ef65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 49c39b4953e545ce3b5957cce22e1ade01c6e642
refs/heads/master: e88a0f461aeadfe309d36a2a4fac9ffb1b0ed651
8 changes: 4 additions & 4 deletions trunk/drivers/video/hitfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@

#define WIDTH 640

static struct fb_var_screeninfo hitfb_var __initdata = {
static struct fb_var_screeninfo hitfb_var __devinitdata = {
.activate = FB_ACTIVATE_NOW,
.height = -1,
.width = -1,
.vmode = FB_VMODE_NONINTERLACED,
};

static struct fb_fix_screeninfo hitfb_fix __initdata = {
static struct fb_fix_screeninfo hitfb_fix __devinitdata = {
.id = "Hitachi HD64461",
.type = FB_TYPE_PACKED_PIXELS,
.accel = FB_ACCEL_NONE,
Expand Down Expand Up @@ -417,7 +417,7 @@ static int __devinit hitfb_probe(struct platform_device *dev)
return ret;
}

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

Expand Down Expand Up @@ -462,7 +462,7 @@ static const struct dev_pm_ops hitfb_dev_pm_ops = {

static struct platform_driver hitfb_driver = {
.probe = hitfb_probe,
.remove = __exit_p(hitfb_remove),
.remove = __devexit_p(hitfb_remove),
.driver = {
.name = "hitfb",
.owner = THIS_MODULE,
Expand Down

0 comments on commit 575ef65

Please sign in to comment.