Skip to content

Commit

Permalink
ARM: pxa168fb: fix section mismatch
Browse files Browse the repository at this point in the history
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Acked-by: Haojian Zhuang <haojian.zhuang@marvell.com>
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
  • Loading branch information
Marek Vasut authored and Eric Miao committed Aug 30, 2010
1 parent b3282ab commit ffb287c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/video/pxa168fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ static struct fb_ops pxa168fb_ops = {
.fb_imageblit = cfb_imageblit,
};

static int __init pxa168fb_init_mode(struct fb_info *info,
static int __devinit pxa168fb_init_mode(struct fb_info *info,
struct pxa168fb_mach_info *mi)
{
struct pxa168fb_info *fbi = info->par;
Expand Down Expand Up @@ -599,7 +599,7 @@ static int __init pxa168fb_init_mode(struct fb_info *info,
return ret;
}

static int __init pxa168fb_probe(struct platform_device *pdev)
static int __devinit pxa168fb_probe(struct platform_device *pdev)
{
struct pxa168fb_mach_info *mi;
struct fb_info *info = 0;
Expand Down Expand Up @@ -792,7 +792,7 @@ static struct platform_driver pxa168fb_driver = {
.probe = pxa168fb_probe,
};

static int __devinit pxa168fb_init(void)
static int __init pxa168fb_init(void)
{
return platform_driver_register(&pxa168fb_driver);
}
Expand Down

0 comments on commit ffb287c

Please sign in to comment.