linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 3/3] USB: OHCI: nxp: remove useless extern declaration
       [not found] <1480735523-23950-1-git-send-email-csmanjuvijay@gmail.com>
@ 2016-12-03  3:25 ` csmanjuvijay at gmail.com
  2016-12-05 14:11   ` Greg Kroah-Hartman
  2016-12-05 14:12   ` Greg Kroah-Hartman
       [not found] ` <1481150056-3623-1-git-send-email-csmanjuvijay@gmail.com>
  1 sibling, 2 replies; 5+ messages in thread
From: csmanjuvijay at gmail.com @ 2016-12-03  3:25 UTC (permalink / raw)
  To: linux-arm-kernel

From: Manjunath Goudar <csmanjuvijay@gmail.com>

Remove usb_disabled() extern declaration as it is already declared
as EXPORT_SYMBOL_GPL declaration.

Signed-off-by: Manjunath Goudar <csmanjuvijay@gmail.com>
Cc: Vladimir Zapolskiy <vz@mleia.com>
Cc: Sylvain Lemieux <slemieux.tyco@gmail.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-arm-kernel at lists.infradead.org
Cc: linux-usb at vger.kernel.org
Cc: linux-kernel at vger.kernel.org
---
 drivers/usb/host/ohci-nxp.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/usb/host/ohci-nxp.c b/drivers/usb/host/ohci-nxp.c
index b7d4756..1843f04 100644
--- a/drivers/usb/host/ohci-nxp.c
+++ b/drivers/usb/host/ohci-nxp.c
@@ -56,8 +56,6 @@ static struct hc_driver __read_mostly ohci_nxp_hc_driver;
 
 static struct i2c_client *isp1301_i2c_client;
 
-extern int usb_disabled(void);
-
 static struct clk *usb_host_clk;
 
 static void isp1301_configure_lpc32xx(void)
-- 
2.7.4

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

* [PATCH 3/3] USB: OHCI: nxp: remove useless extern declaration
  2016-12-03  3:25 ` [PATCH 3/3] USB: OHCI: nxp: remove useless extern declaration csmanjuvijay at gmail.com
@ 2016-12-05 14:11   ` Greg Kroah-Hartman
  2016-12-05 14:12   ` Greg Kroah-Hartman
  1 sibling, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2016-12-05 14:11 UTC (permalink / raw)
  To: linux-arm-kernel

On Sat, Dec 03, 2016 at 03:25:23AM +0000, csmanjuvijay at gmail.com wrote:
> From: Manjunath Goudar <csmanjuvijay@gmail.com>
> 
> Remove usb_disabled() extern declaration as it is already declared
> as EXPORT_SYMBOL_GPL declaration.

And same thing again...

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

* [PATCH 3/3] USB: OHCI: nxp: remove useless extern declaration
  2016-12-03  3:25 ` [PATCH 3/3] USB: OHCI: nxp: remove useless extern declaration csmanjuvijay at gmail.com
  2016-12-05 14:11   ` Greg Kroah-Hartman
@ 2016-12-05 14:12   ` Greg Kroah-Hartman
  1 sibling, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2016-12-05 14:12 UTC (permalink / raw)
  To: linux-arm-kernel

On Sat, Dec 03, 2016 at 03:25:23AM +0000, csmanjuvijay at gmail.com wrote:
> From: Manjunath Goudar <csmanjuvijay@gmail.com>
> 
> Remove usb_disabled() extern declaration as it is already declared
> as EXPORT_SYMBOL_GPL declaration.

merge this with your first patch please, it belongs with it.

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

* [PATCH v2 3/3] USB: OHCI: nxp: remove useless extern declaration
       [not found] ` <1481150056-3623-1-git-send-email-csmanjuvijay@gmail.com>
@ 2016-12-07 22:34   ` csmanjuvijay at gmail.com
  2016-12-08  1:35     ` Vladimir Zapolskiy
  0 siblings, 1 reply; 5+ messages in thread
From: csmanjuvijay at gmail.com @ 2016-12-07 22:34 UTC (permalink / raw)
  To: linux-arm-kernel

From: Manjunath Goudar <csmanjuvijay@gmail.com>

Remove usb_disabled() extern declaration as it is already declared
as extern in include/linux/usb.h.

Signed-off-by: Manjunath Goudar <csmanjuvijay@gmail.com>
Cc: Vladimir Zapolskiy <vz@mleia.com>
Cc: Sylvain Lemieux <slemieux.tyco@gmail.com>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-arm-kernel at lists.infradead.org
Cc: linux-usb at vger.kernel.org
Cc: linux-kernel at vger.kernel.org
---
changelog V1->V2:
patch discrition is update with proper message.

 drivers/usb/host/ohci-nxp.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/usb/host/ohci-nxp.c b/drivers/usb/host/ohci-nxp.c
index b7d4756..1843f04 100644
--- a/drivers/usb/host/ohci-nxp.c
+++ b/drivers/usb/host/ohci-nxp.c
@@ -56,8 +56,6 @@ static struct hc_driver __read_mostly ohci_nxp_hc_driver;
 
 static struct i2c_client *isp1301_i2c_client;
 
-extern int usb_disabled(void);
-
 static struct clk *usb_host_clk;
 
 static void isp1301_configure_lpc32xx(void)
-- 
2.7.4

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

* [PATCH v2 3/3] USB: OHCI: nxp: remove useless extern declaration
  2016-12-07 22:34   ` [PATCH v2 " csmanjuvijay at gmail.com
@ 2016-12-08  1:35     ` Vladimir Zapolskiy
  0 siblings, 0 replies; 5+ messages in thread
From: Vladimir Zapolskiy @ 2016-12-08  1:35 UTC (permalink / raw)
  To: linux-arm-kernel

On 12/08/2016 12:34 AM, csmanjuvijay at gmail.com wrote:
> From: Manjunath Goudar <csmanjuvijay@gmail.com>
> 
> Remove usb_disabled() extern declaration as it is already declared
> as extern in include/linux/usb.h.
> 
> Signed-off-by: Manjunath Goudar <csmanjuvijay@gmail.com>
> Cc: Vladimir Zapolskiy <vz@mleia.com>
> Cc: Sylvain Lemieux <slemieux.tyco@gmail.com>
> Cc: Alan Stern <stern@rowland.harvard.edu>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: linux-arm-kernel at lists.infradead.org
> Cc: linux-usb at vger.kernel.org
> Cc: linux-kernel at vger.kernel.org
> ---
> changelog V1->V2:
> patch discrition is update with proper message.
> 

I'm fine with the change, thank you for the clean-up.

Acked-by: Vladimir Zapolskiy <vz@mleia.com>

--
With best wishes,
Vladimir

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

end of thread, other threads:[~2016-12-08  1:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1480735523-23950-1-git-send-email-csmanjuvijay@gmail.com>
2016-12-03  3:25 ` [PATCH 3/3] USB: OHCI: nxp: remove useless extern declaration csmanjuvijay at gmail.com
2016-12-05 14:11   ` Greg Kroah-Hartman
2016-12-05 14:12   ` Greg Kroah-Hartman
     [not found] ` <1481150056-3623-1-git-send-email-csmanjuvijay@gmail.com>
2016-12-07 22:34   ` [PATCH v2 " csmanjuvijay at gmail.com
2016-12-08  1:35     ` Vladimir Zapolskiy

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