diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-28 14:33:00 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-23 19:35:17 -0400 |
commit | 374f4bfdf5b6a37a641c13ef22e0bbb42e0b3ac7 (patch) | |
tree | a53305cc023155b9e8e0cd0f3e2f7c1d0fef203c /drivers/usb/host/isp1362.h | |
parent | 2809508d3b63c9fedf8daf23d08dd61f40a761f4 (diff) |
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.
Acked-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/isp1362.h')
-rw-r--r-- | drivers/usb/host/isp1362.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/usb/host/isp1362.h b/drivers/usb/host/isp1362.h index e0f6f922052d..d36a90868900 100644 --- a/drivers/usb/host/isp1362.h +++ b/drivers/usb/host/isp1362.h | |||
@@ -588,14 +588,8 @@ static inline struct usb_hcd *isp1362_hcd_to_hcd(struct isp1362_hcd *isp1362_hcd | |||
588 | if (dbg_level > level) \ | 588 | if (dbg_level > level) \ |
589 | pr_debug(fmt); \ | 589 | pr_debug(fmt); \ |
590 | } while (0) | 590 | } while (0) |
591 | #define _DBG(level, fmt...) \ | ||
592 | do { \ | ||
593 | if (dbg_level > level) \ | ||
594 | printk(fmt); \ | ||
595 | } while (0) | ||
596 | #else | 591 | #else |
597 | #define DBG(fmt...) do {} while (0) | 592 | #define DBG(fmt...) do {} while (0) |
598 | #define _DBG DBG | ||
599 | #endif | 593 | #endif |
600 | 594 | ||
601 | #ifdef VERBOSE | 595 | #ifdef VERBOSE |