* [PATCH] pxa168fb: Fix section mismatch
@ 2010-08-26 3:51 Marek Vasut
2010-08-26 3:53 ` Haojian Zhuang
0 siblings, 1 reply; 3+ messages in thread
From: Marek Vasut @ 2010-08-26 3:51 UTC (permalink / raw)
To: linux-arm-kernel
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
---
drivers/video/pxa168fb.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/video/pxa168fb.c b/drivers/video/pxa168fb.c
index c91a7f7..5d786bd 100644
--- a/drivers/video/pxa168fb.c
+++ b/drivers/video/pxa168fb.c
@@ -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);
}
--
1.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] pxa168fb: Fix section mismatch
2010-08-26 3:51 [PATCH] pxa168fb: Fix section mismatch Marek Vasut
@ 2010-08-26 3:53 ` Haojian Zhuang
2010-08-26 9:58 ` Eric Miao
0 siblings, 1 reply; 3+ messages in thread
From: Haojian Zhuang @ 2010-08-26 3:53 UTC (permalink / raw)
To: linux-arm-kernel
-----Original Message-----
From: Marek Vasut [mailto:marek.vasut at gmail.com]
Sent: 2010?8?26? 11:52 AM
To: linux-arm-kernel at lists.infradead.org
Cc: Haojian Zhuang; mark.brown314 at gmail.com; eric.y.miao at gmail.com; Marek Vasut
Subject: [PATCH] pxa168fb: Fix section mismatch
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
---
drivers/video/pxa168fb.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/video/pxa168fb.c b/drivers/video/pxa168fb.c
index c91a7f7..5d786bd 100644
--- a/drivers/video/pxa168fb.c
+++ b/drivers/video/pxa168fb.c
@@ -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);
}
--
1.7.1
I'm fine on this patch. Acked.
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] pxa168fb: Fix section mismatch
2010-08-26 3:53 ` Haojian Zhuang
@ 2010-08-26 9:58 ` Eric Miao
0 siblings, 0 replies; 3+ messages in thread
From: Eric Miao @ 2010-08-26 9:58 UTC (permalink / raw)
To: linux-arm-kernel
2010/8/26 Haojian Zhuang <hzhuang1@marvell.com>:
>
> -----Original Message-----
> From: Marek Vasut [mailto:marek.vasut at gmail.com]
> Sent: 2010?8?26? 11:52 AM
> To: linux-arm-kernel at lists.infradead.org
> Cc: Haojian Zhuang; mark.brown314 at gmail.com; eric.y.miao at gmail.com; Marek Vasut
> Subject: [PATCH] pxa168fb: Fix section mismatch
>
> Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
> ---
> ?drivers/video/pxa168fb.c | ? ?6 +++---
> ?1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/video/pxa168fb.c b/drivers/video/pxa168fb.c
> index c91a7f7..5d786bd 100644
> --- a/drivers/video/pxa168fb.c
> +++ b/drivers/video/pxa168fb.c
> @@ -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);
> ?}
> --
> 1.7.1
>
> I'm fine on this patch. Acked.
>
Applied to 'fix'.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-08-26 9:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-26 3:51 [PATCH] pxa168fb: Fix section mismatch Marek Vasut
2010-08-26 3:53 ` Haojian Zhuang
2010-08-26 9:58 ` Eric Miao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).