All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] backlight: ep93xx_bl: fix section mismatch
@ 2013-03-16  1:03 ` H Hartley Sweeten
  0 siblings, 0 replies; 6+ messages in thread
From: H Hartley Sweeten @ 2013-03-16  1:03 UTC (permalink / raw)
  To: Linux Kernel; +Cc: linux-fbdev, Ryan Mallon, rpurdie, FlorianSchandinat

Remove the __init tag from ep93xxbl_probe() to fix the section
mismatch warning.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ryan Mallon <rmallon@gmail.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
---
 drivers/video/backlight/ep93xx_bl.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/video/backlight/ep93xx_bl.c b/drivers/video/backlight/ep93xx_bl.c
index ef3e21e..17b8abb 100644
--- a/drivers/video/backlight/ep93xx_bl.c
+++ b/drivers/video/backlight/ep93xx_bl.c
@@ -60,7 +60,7 @@ static const struct backlight_ops ep93xxbl_ops = {
 	.get_brightness	= ep93xxbl_get_brightness,
 };
 
-static int __init ep93xxbl_probe(struct platform_device *dev)
+static int ep93xxbl_probe(struct platform_device *dev)
 {
 	struct ep93xxbl *ep93xxbl;
 	struct backlight_device *bl;
@@ -145,7 +145,6 @@ static struct platform_driver ep93xxbl_driver = {
 	.suspend	= ep93xxbl_suspend,
 	.resume		= ep93xxbl_resume,
 };
-
 module_platform_driver(ep93xxbl_driver);
 
 MODULE_DESCRIPTION("EP93xx Backlight Driver");
-- 
1.8.1.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 1/3] backlight: ep93xx_bl: fix section mismatch
@ 2013-03-16  1:03 ` H Hartley Sweeten
  0 siblings, 0 replies; 6+ messages in thread
From: H Hartley Sweeten @ 2013-03-16  1:03 UTC (permalink / raw)
  To: Linux Kernel; +Cc: linux-fbdev, Ryan Mallon, rpurdie, FlorianSchandinat

Remove the __init tag from ep93xxbl_probe() to fix the section
mismatch warning.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ryan Mallon <rmallon@gmail.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
---
 drivers/video/backlight/ep93xx_bl.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/video/backlight/ep93xx_bl.c b/drivers/video/backlight/ep93xx_bl.c
index ef3e21e..17b8abb 100644
--- a/drivers/video/backlight/ep93xx_bl.c
+++ b/drivers/video/backlight/ep93xx_bl.c
@@ -60,7 +60,7 @@ static const struct backlight_ops ep93xxbl_ops = {
 	.get_brightness	= ep93xxbl_get_brightness,
 };
 
-static int __init ep93xxbl_probe(struct platform_device *dev)
+static int ep93xxbl_probe(struct platform_device *dev)
 {
 	struct ep93xxbl *ep93xxbl;
 	struct backlight_device *bl;
@@ -145,7 +145,6 @@ static struct platform_driver ep93xxbl_driver = {
 	.suspend	= ep93xxbl_suspend,
 	.resume		= ep93xxbl_resume,
 };
-
 module_platform_driver(ep93xxbl_driver);
 
 MODULE_DESCRIPTION("EP93xx Backlight Driver");
-- 
1.8.1.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/3] backlight: ep93xx_bl: fix section mismatch
  2013-03-16  1:03 ` H Hartley Sweeten
@ 2013-03-16  2:19   ` Ryan Mallon
  -1 siblings, 0 replies; 6+ messages in thread
From: Ryan Mallon @ 2013-03-16  2:19 UTC (permalink / raw)
  To: H Hartley Sweeten; +Cc: Linux Kernel, linux-fbdev, rpurdie, FlorianSchandinat

On 16/03/13 12:03, H Hartley Sweeten wrote:

> Remove the __init tag from ep93xxbl_probe() to fix the section
> mismatch warning.
> 
> Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
> Cc: Ryan Mallon <rmallon@gmail.com>
> Cc: Richard Purdie <rpurdie@rpsys.net>
> Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>


There is a patch for this already queued in Andrew Morton's tree.

~Ryan

> ---
>  drivers/video/backlight/ep93xx_bl.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/video/backlight/ep93xx_bl.c b/drivers/video/backlight/ep93xx_bl.c
> index ef3e21e..17b8abb 100644
> --- a/drivers/video/backlight/ep93xx_bl.c
> +++ b/drivers/video/backlight/ep93xx_bl.c
> @@ -60,7 +60,7 @@ static const struct backlight_ops ep93xxbl_ops = {
>  	.get_brightness	= ep93xxbl_get_brightness,
>  };
>  
> -static int __init ep93xxbl_probe(struct platform_device *dev)
> +static int ep93xxbl_probe(struct platform_device *dev)
>  {
>  	struct ep93xxbl *ep93xxbl;
>  	struct backlight_device *bl;
> @@ -145,7 +145,6 @@ static struct platform_driver ep93xxbl_driver = {
>  	.suspend	= ep93xxbl_suspend,
>  	.resume		= ep93xxbl_resume,
>  };
> -
>  module_platform_driver(ep93xxbl_driver);
>  
>  MODULE_DESCRIPTION("EP93xx Backlight Driver");



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/3] backlight: ep93xx_bl: fix section mismatch
@ 2013-03-16  2:19   ` Ryan Mallon
  0 siblings, 0 replies; 6+ messages in thread
From: Ryan Mallon @ 2013-03-16  2:19 UTC (permalink / raw)
  To: H Hartley Sweeten; +Cc: Linux Kernel, linux-fbdev, rpurdie, FlorianSchandinat

On 16/03/13 12:03, H Hartley Sweeten wrote:

> Remove the __init tag from ep93xxbl_probe() to fix the section
> mismatch warning.
> 
> Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
> Cc: Ryan Mallon <rmallon@gmail.com>
> Cc: Richard Purdie <rpurdie@rpsys.net>
> Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>


There is a patch for this already queued in Andrew Morton's tree.

~Ryan

> ---
>  drivers/video/backlight/ep93xx_bl.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/video/backlight/ep93xx_bl.c b/drivers/video/backlight/ep93xx_bl.c
> index ef3e21e..17b8abb 100644
> --- a/drivers/video/backlight/ep93xx_bl.c
> +++ b/drivers/video/backlight/ep93xx_bl.c
> @@ -60,7 +60,7 @@ static const struct backlight_ops ep93xxbl_ops = {
>  	.get_brightness	= ep93xxbl_get_brightness,
>  };
>  
> -static int __init ep93xxbl_probe(struct platform_device *dev)
> +static int ep93xxbl_probe(struct platform_device *dev)
>  {
>  	struct ep93xxbl *ep93xxbl;
>  	struct backlight_device *bl;
> @@ -145,7 +145,6 @@ static struct platform_driver ep93xxbl_driver = {
>  	.suspend	= ep93xxbl_suspend,
>  	.resume		= ep93xxbl_resume,
>  };
> -
>  module_platform_driver(ep93xxbl_driver);
>  
>  MODULE_DESCRIPTION("EP93xx Backlight Driver");



^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH 1/3] backlight: ep93xx_bl: fix section mismatch
  2013-03-16  2:19   ` Ryan Mallon
@ 2013-03-18 17:51     ` H Hartley Sweeten
  -1 siblings, 0 replies; 6+ messages in thread
From: H Hartley Sweeten @ 2013-03-18 17:51 UTC (permalink / raw)
  To: Ryan Mallon; +Cc: Linux Kernel, linux-fbdev, rpurdie, FlorianSchandinat

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 1077 bytes --]

On Friday, March 15, 2013 7:20 PM, Ryan Mallon wrote:
> On 16/03/13 12:03, H Hartley Sweeten wrote:
>
>> Remove the __init tag from ep93xxbl_probe() to fix the section
>> mismatch warning.
>> 
>> Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
>> Cc: Ryan Mallon <rmallon@gmail.com>
>> Cc: Richard Purdie <rpurdie@rpsys.net>
>> Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
>
>
> There is a patch for this already queued in Andrew Morton's tree.

Ah, missed that one. Please drop patch 1/3.

The other two, as well as the compile bug fix for ep93xx_fb.c should still
be ok. The bug fix patch is probably valid for stable as appropriate.

[PATCH] video: ep93xx_fb: include <linux/io.h> for devm_ioremap()
[PATCH 2/3] video: ep93xx-fb.c: fix section mismatch and use module_platform_driver
[PATCH 3/3] misc: ep93xx_pwm.c: fix section mismatch and use module_platform_driver

Thanks,
Hartley

ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH 1/3] backlight: ep93xx_bl: fix section mismatch
@ 2013-03-18 17:51     ` H Hartley Sweeten
  0 siblings, 0 replies; 6+ messages in thread
From: H Hartley Sweeten @ 2013-03-18 17:51 UTC (permalink / raw)
  To: Ryan Mallon; +Cc: Linux Kernel, linux-fbdev, rpurdie, FlorianSchandinat

T24gRnJpZGF5LCBNYXJjaCAxNSwgMjAxMyA3OjIwIFBNLCBSeWFuIE1hbGxvbiB3cm90ZToNCj4g
T24gMTYvMDMvMTMgMTI6MDMsIEggSGFydGxleSBTd2VldGVuIHdyb3RlOg0KPg0KPj4gUmVtb3Zl
IHRoZSBfX2luaXQgdGFnIGZyb20gZXA5M3h4YmxfcHJvYmUoKSB0byBmaXggdGhlIHNlY3Rpb24N
Cj4+IG1pc21hdGNoIHdhcm5pbmcuDQo+PiANCj4+IFNpZ25lZC1vZmYtYnk6IEggSGFydGxleSBT
d2VldGVuIDxoc3dlZXRlbkB2aXNpb25lbmdyYXZlcnMuY29tPg0KPj4gQ2M6IFJ5YW4gTWFsbG9u
IDxybWFsbG9uQGdtYWlsLmNvbT4NCj4+IENjOiBSaWNoYXJkIFB1cmRpZSA8cnB1cmRpZUBycHN5
cy5uZXQ+DQo+PiBDYzogRmxvcmlhbiBUb2JpYXMgU2NoYW5kaW5hdCA8RmxvcmlhblNjaGFuZGlu
YXRAZ214LmRlPg0KPg0KPg0KPiBUaGVyZSBpcyBhIHBhdGNoIGZvciB0aGlzIGFscmVhZHkgcXVl
dWVkIGluIEFuZHJldyBNb3J0b24ncyB0cmVlLg0KDQpBaCwgbWlzc2VkIHRoYXQgb25lLiBQbGVh
c2UgZHJvcCBwYXRjaCAxLzMuDQoNClRoZSBvdGhlciB0d28sIGFzIHdlbGwgYXMgdGhlIGNvbXBp
bGUgYnVnIGZpeCBmb3IgZXA5M3h4X2ZiLmMgc2hvdWxkIHN0aWxsDQpiZSBvay4gVGhlIGJ1ZyBm
aXggcGF0Y2ggaXMgcHJvYmFibHkgdmFsaWQgZm9yIHN0YWJsZSBhcyBhcHByb3ByaWF0ZS4NCg0K
W1BBVENIXSB2aWRlbzogZXA5M3h4X2ZiOiBpbmNsdWRlIDxsaW51eC9pby5oPiBmb3IgZGV2bV9p
b3JlbWFwKCkNCltQQVRDSCAyLzNdIHZpZGVvOiBlcDkzeHgtZmIuYzogZml4IHNlY3Rpb24gbWlz
bWF0Y2ggYW5kIHVzZSBtb2R1bGVfcGxhdGZvcm1fZHJpdmVyDQpbUEFUQ0ggMy8zXSBtaXNjOiBl
cDkzeHhfcHdtLmM6IGZpeCBzZWN0aW9uIG1pc21hdGNoIGFuZCB1c2UgbW9kdWxlX3BsYXRmb3Jt
X2RyaXZlcg0KDQpUaGFua3MsDQpIYXJ0bGV5DQoNCg=

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-03-18 17:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-16  1:03 [PATCH 1/3] backlight: ep93xx_bl: fix section mismatch H Hartley Sweeten
2013-03-16  1:03 ` H Hartley Sweeten
2013-03-16  2:19 ` Ryan Mallon
2013-03-16  2:19   ` Ryan Mallon
2013-03-18 17:51   ` H Hartley Sweeten
2013-03-18 17:51     ` H Hartley Sweeten

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.