Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ffb287c9 authored by Marek Vasut's avatar Marek Vasut Committed by Eric Miao
Browse files

ARM: pxa168fb: fix section mismatch

parent b3282ab1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;
@@ -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;
@@ -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);
}