aboutsummaryrefslogtreecommitdiffstats
path: root/usb-isp1362-remove-_dbg-usage.patch
diff options
Diffstat (limited to 'usb-isp1362-remove-_dbg-usage.patch')
-rw-r--r--usb-isp1362-remove-_dbg-usage.patch142
1 files changed, 142 insertions, 0 deletions
diff --git a/usb-isp1362-remove-_dbg-usage.patch b/usb-isp1362-remove-_dbg-usage.patch
new file mode 100644
index 00000000000000..ba87fd83f214fd
--- /dev/null
+++ b/usb-isp1362-remove-_dbg-usage.patch
@@ -0,0 +1,142 @@
+From foo@baz Fri Jun 28 11:14:57 PDT 2013
+Date: Fri, 28 Jun 2013 11:14:57 -0700
+To: Greg KH <gregkh@linuxfoundation.org>
+Cc: Felipe Balbi <balbi@ti.com>
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Subject: USB: isp1362: remove _DBG() usage
+
+If you want a debug call, just make it, so move to using the
+already-there DBG() call. No need to make things more complex than they
+really need to be.
+
+Cc: Felipe Balbi <balbi@ti.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ drivers/usb/host/isp1362-hcd.c | 30 +++++++++++++++---------------
+ drivers/usb/host/isp1362.h | 6 ------
+ 2 files changed, 15 insertions(+), 21 deletions(-)
+
+--- a/drivers/usb/host/isp1362-hcd.c
++++ b/drivers/usb/host/isp1362-hcd.c
+@@ -1573,12 +1573,12 @@ static int isp1362_hub_control(struct us
+ DBG(0, "ClearHubFeature: ");
+ switch (wValue) {
+ case C_HUB_OVER_CURRENT:
+- _DBG(0, "C_HUB_OVER_CURRENT\n");
++ DBG(0, "C_HUB_OVER_CURRENT\n");
+ spin_lock_irqsave(&isp1362_hcd->lock, flags);
+ isp1362_write_reg32(isp1362_hcd, HCRHSTATUS, RH_HS_OCIC);
+ spin_unlock_irqrestore(&isp1362_hcd->lock, flags);
+ case C_HUB_LOCAL_POWER:
+- _DBG(0, "C_HUB_LOCAL_POWER\n");
++ DBG(0, "C_HUB_LOCAL_POWER\n");
+ break;
+ default:
+ goto error;
+@@ -1589,7 +1589,7 @@ static int isp1362_hub_control(struct us
+ switch (wValue) {
+ case C_HUB_OVER_CURRENT:
+ case C_HUB_LOCAL_POWER:
+- _DBG(0, "C_HUB_OVER_CURRENT or C_HUB_LOCAL_POWER\n");
++ DBG(0, "C_HUB_OVER_CURRENT or C_HUB_LOCAL_POWER\n");
+ break;
+ default:
+ goto error;
+@@ -1620,36 +1620,36 @@ static int isp1362_hub_control(struct us
+
+ switch (wValue) {
+ case USB_PORT_FEAT_ENABLE:
+- _DBG(0, "USB_PORT_FEAT_ENABLE\n");
++ DBG(0, "USB_PORT_FEAT_ENABLE\n");
+ tmp = RH_PS_CCS;
+ break;
+ case USB_PORT_FEAT_C_ENABLE:
+- _DBG(0, "USB_PORT_FEAT_C_ENABLE\n");
++ DBG(0, "USB_PORT_FEAT_C_ENABLE\n");
+ tmp = RH_PS_PESC;
+ break;
+ case USB_PORT_FEAT_SUSPEND:
+- _DBG(0, "USB_PORT_FEAT_SUSPEND\n");
++ DBG(0, "USB_PORT_FEAT_SUSPEND\n");
+ tmp = RH_PS_POCI;
+ break;
+ case USB_PORT_FEAT_C_SUSPEND:
+- _DBG(0, "USB_PORT_FEAT_C_SUSPEND\n");
++ DBG(0, "USB_PORT_FEAT_C_SUSPEND\n");
+ tmp = RH_PS_PSSC;
+ break;
+ case USB_PORT_FEAT_POWER:
+- _DBG(0, "USB_PORT_FEAT_POWER\n");
++ DBG(0, "USB_PORT_FEAT_POWER\n");
+ tmp = RH_PS_LSDA;
+
+ break;
+ case USB_PORT_FEAT_C_CONNECTION:
+- _DBG(0, "USB_PORT_FEAT_C_CONNECTION\n");
++ DBG(0, "USB_PORT_FEAT_C_CONNECTION\n");
+ tmp = RH_PS_CSC;
+ break;
+ case USB_PORT_FEAT_C_OVER_CURRENT:
+- _DBG(0, "USB_PORT_FEAT_C_OVER_CURRENT\n");
++ DBG(0, "USB_PORT_FEAT_C_OVER_CURRENT\n");
+ tmp = RH_PS_OCIC;
+ break;
+ case USB_PORT_FEAT_C_RESET:
+- _DBG(0, "USB_PORT_FEAT_C_RESET\n");
++ DBG(0, "USB_PORT_FEAT_C_RESET\n");
+ tmp = RH_PS_PRSC;
+ break;
+ default:
+@@ -1669,7 +1669,7 @@ static int isp1362_hub_control(struct us
+ wIndex--;
+ switch (wValue) {
+ case USB_PORT_FEAT_SUSPEND:
+- _DBG(0, "USB_PORT_FEAT_SUSPEND\n");
++ DBG(0, "USB_PORT_FEAT_SUSPEND\n");
+ spin_lock_irqsave(&isp1362_hcd->lock, flags);
+ isp1362_write_reg32(isp1362_hcd, HCRHPORT1 + wIndex, RH_PS_PSS);
+ isp1362_hcd->rhport[wIndex] =
+@@ -1677,7 +1677,7 @@ static int isp1362_hub_control(struct us
+ spin_unlock_irqrestore(&isp1362_hcd->lock, flags);
+ break;
+ case USB_PORT_FEAT_POWER:
+- _DBG(0, "USB_PORT_FEAT_POWER\n");
++ DBG(0, "USB_PORT_FEAT_POWER\n");
+ spin_lock_irqsave(&isp1362_hcd->lock, flags);
+ isp1362_write_reg32(isp1362_hcd, HCRHPORT1 + wIndex, RH_PS_PPS);
+ isp1362_hcd->rhport[wIndex] =
+@@ -1685,7 +1685,7 @@ static int isp1362_hub_control(struct us
+ spin_unlock_irqrestore(&isp1362_hcd->lock, flags);
+ break;
+ case USB_PORT_FEAT_RESET:
+- _DBG(0, "USB_PORT_FEAT_RESET\n");
++ DBG(0, "USB_PORT_FEAT_RESET\n");
+ spin_lock_irqsave(&isp1362_hcd->lock, flags);
+
+ t1 = jiffies + msecs_to_jiffies(USB_RESET_WIDTH);
+@@ -1719,7 +1719,7 @@ static int isp1362_hub_control(struct us
+ default:
+ error:
+ /* "protocol stall" on error */
+- _DBG(0, "PROTOCOL STALL\n");
++ DBG(0, "PROTOCOL STALL\n");
+ retval = -EPIPE;
+ }
+
+--- a/drivers/usb/host/isp1362.h
++++ b/drivers/usb/host/isp1362.h
+@@ -588,14 +588,8 @@ static inline struct usb_hcd *isp1362_hc
+ if (dbg_level > level) \
+ pr_debug(fmt); \
+ } while (0)
+-#define _DBG(level, fmt...) \
+- do { \
+- if (dbg_level > level) \
+- printk(fmt); \
+- } while (0)
+ #else
+ #define DBG(fmt...) do {} while (0)
+-#define _DBG DBG
+ #endif
+
+ #ifdef VERBOSE