linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Extcon: fix section mismatch in extcon_gpio.c
@ 2012-05-02 22:38 H Hartley Sweeten
  2012-05-02 22:45 ` Mark Brown
  0 siblings, 1 reply; 6+ messages in thread
From: H Hartley Sweeten @ 2012-05-02 22:38 UTC (permalink / raw)
  To: Linux Kernel; +Cc: myungjoo.ham, broonie, gregkh, kyungmin.park

Fix the section mismatch be renaming the struct platform_driver
variable.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Kyungmin Park <kyungmin.park@samsung.com>

---

diff --git a/drivers/extcon/extcon_gpio.c b/drivers/extcon/extcon_gpio.c
index 5c0f085..fe7a07b 100644
--- a/drivers/extcon/extcon_gpio.c
+++ b/drivers/extcon/extcon_gpio.c
@@ -153,7 +153,7 @@ static int __devexit gpio_extcon_remove(struct platform_device *pdev)
 	return 0;
 }
 
-static struct platform_driver gpio_extcon = {
+static struct platform_driver gpio_extcon_driver = {
 	.probe		= gpio_extcon_probe,
 	.remove		= __devexit_p(gpio_extcon_remove),
 	.driver		= {
@@ -162,7 +162,7 @@ static struct platform_driver gpio_extcon = {
 	},
 };
 
-module_platform_driver(gpio_extcon);
+module_platform_driver(gpio_extcon_driver);
 
 MODULE_AUTHOR("Mike Lockwood <lockwood@android.com>");
 MODULE_DESCRIPTION("GPIO extcon driver");

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

* Re: [PATCH] Extcon: fix section mismatch in extcon_gpio.c
  2012-05-02 22:38 [PATCH] Extcon: fix section mismatch in extcon_gpio.c H Hartley Sweeten
@ 2012-05-02 22:45 ` Mark Brown
  2012-05-02 22:51   ` Greg KH
  2012-05-02 23:10   ` H Hartley Sweeten
  0 siblings, 2 replies; 6+ messages in thread
From: Mark Brown @ 2012-05-02 22:45 UTC (permalink / raw)
  To: H Hartley Sweeten; +Cc: Linux Kernel, myungjoo.ham, gregkh, kyungmin.park

On Wed, May 02, 2012 at 03:38:44PM -0700, H Hartley Sweeten wrote:
> Fix the section mismatch be renaming the struct platform_driver
> variable.

I'm pretty sure I sent a version of this patch sometime last week :/

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

* Re: [PATCH] Extcon: fix section mismatch in extcon_gpio.c
  2012-05-02 22:45 ` Mark Brown
@ 2012-05-02 22:51   ` Greg KH
  2012-05-02 23:04     ` Mark Brown
  2012-05-02 23:10   ` H Hartley Sweeten
  1 sibling, 1 reply; 6+ messages in thread
From: Greg KH @ 2012-05-02 22:51 UTC (permalink / raw)
  To: Mark Brown; +Cc: H Hartley Sweeten, Linux Kernel, myungjoo.ham, kyungmin.park

On Wed, May 02, 2012 at 11:45:14PM +0100, Mark Brown wrote:
> On Wed, May 02, 2012 at 03:38:44PM -0700, H Hartley Sweeten wrote:
> > Fix the section mismatch be renaming the struct platform_driver
> > variable.
> 
> I'm pretty sure I sent a version of this patch sometime last week :/

So did I, but I can't seem to find it anywhere.  Did I not apply it?

odd.

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

* Re: [PATCH] Extcon: fix section mismatch in extcon_gpio.c
  2012-05-02 22:51   ` Greg KH
@ 2012-05-02 23:04     ` Mark Brown
  2012-05-02 23:21       ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Mark Brown @ 2012-05-02 23:04 UTC (permalink / raw)
  To: Greg KH; +Cc: H Hartley Sweeten, Linux Kernel, myungjoo.ham, kyungmin.park

On Wed, May 02, 2012 at 03:51:15PM -0700, Greg KH wrote:

> So did I, but I can't seem to find it anywhere.  Did I not apply it?

> odd.

Nope, no response at all from you that I recall.  Perhaps I forgot to CC
the list or something.

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

* RE: [PATCH] Extcon: fix section mismatch in extcon_gpio.c
  2012-05-02 22:45 ` Mark Brown
  2012-05-02 22:51   ` Greg KH
@ 2012-05-02 23:10   ` H Hartley Sweeten
  1 sibling, 0 replies; 6+ messages in thread
From: H Hartley Sweeten @ 2012-05-02 23:10 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux Kernel, myungjoo.ham, gregkh, kyungmin.park

On Wednesday, May 02, 2012 3:45 PM, Mark Brown wrote:
> On Wed, May 02, 2012 at 03:38:44PM -0700, H Hartley Sweeten wrote:
>> Fix the section mismatch be renaming the struct platform_driver
>> variable.
>
> I'm pretty sure I sent a version of this patch sometime last week :/

If you have Mark's patch already, I have no problem with you using his
instead.

Regards,
Hartley


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

* Re: [PATCH] Extcon: fix section mismatch in extcon_gpio.c
  2012-05-02 23:04     ` Mark Brown
@ 2012-05-02 23:21       ` Greg KH
  0 siblings, 0 replies; 6+ messages in thread
From: Greg KH @ 2012-05-02 23:21 UTC (permalink / raw)
  To: Mark Brown; +Cc: H Hartley Sweeten, Linux Kernel, myungjoo.ham, kyungmin.park

On Thu, May 03, 2012 at 12:04:18AM +0100, Mark Brown wrote:
> On Wed, May 02, 2012 at 03:51:15PM -0700, Greg KH wrote:
> 
> > So did I, but I can't seem to find it anywhere.  Did I not apply it?
> 
> > odd.
> 
> Nope, no response at all from you that I recall.  Perhaps I forgot to CC
> the list or something.

Hm, I found it now, it ended up in my "already applied this" mbox, but
obviously, I didn't apply it.

Very sorry about that, I went through a few hundred patches the other
day on the airplane, I must have messed this one up, my apologies.

greg k-h

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

end of thread, other threads:[~2012-05-02 23:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-02 22:38 [PATCH] Extcon: fix section mismatch in extcon_gpio.c H Hartley Sweeten
2012-05-02 22:45 ` Mark Brown
2012-05-02 22:51   ` Greg KH
2012-05-02 23:04     ` Mark Brown
2012-05-02 23:21       ` Greg KH
2012-05-02 23:10   ` H Hartley Sweeten

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).