aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-06-28 14:32:54 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-07-23 19:32:36 -0400
commit2c21c985f1bc9f9b19ce258f38bb400ced3c7309 (patch)
tree86ad15fbe6815f4fd9d81fcd1c7b3e7ea85464be
parent2d6401cf4ca3861692a4779745e0049cac769d10 (diff)
USB: usbatm: remove CONFIG_USB_DEBUG dependancy
Now that no USB atm driver is relying on the CONFIG_USB_DEBUG option (well, really the DEBUG option, thanks to some Makefile fun), remove it from the Makefile. Also remove two last vestiges of DEBUG in the usbatm.c driver, moving one to VERBOSE_DEBUG, which no one ever really cares about, and the other to use the dynamic debug subsystem. Cc: Duncan Sands <duncan.sands@free.fr> Acked-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/atm/Makefile3
-rw-r--r--drivers/usb/atm/usbatm.c7
2 files changed, 3 insertions, 7 deletions
diff --git a/drivers/usb/atm/Makefile b/drivers/usb/atm/Makefile
index a5d792ec3ad5..ac278946b06c 100644
--- a/drivers/usb/atm/Makefile
+++ b/drivers/usb/atm/Makefile
@@ -1,9 +1,6 @@
1# 1#
2# Makefile for USB ATM/xDSL drivers 2# Makefile for USB ATM/xDSL drivers
3# 3#
4
5ccflags-$(CONFIG_USB_DEBUG) := -DDEBUG
6
7obj-$(CONFIG_USB_CXACRU) += cxacru.o 4obj-$(CONFIG_USB_CXACRU) += cxacru.o
8obj-$(CONFIG_USB_SPEEDTOUCH) += speedtch.o 5obj-$(CONFIG_USB_SPEEDTOUCH) += speedtch.o
9obj-$(CONFIG_USB_UEAGLEATM) += ueagle-atm.o 6obj-$(CONFIG_USB_UEAGLEATM) += ueagle-atm.o
diff --git a/drivers/usb/atm/usbatm.c b/drivers/usb/atm/usbatm.c
index 231ef4712e84..25a7bfcf666c 100644
--- a/drivers/usb/atm/usbatm.c
+++ b/drivers/usb/atm/usbatm.c
@@ -661,7 +661,7 @@ static int usbatm_atm_send(struct atm_vcc *vcc, struct sk_buff *skb)
661 661
662 /* racy disconnection check - fine */ 662 /* racy disconnection check - fine */
663 if (!instance || instance->disconnected) { 663 if (!instance || instance->disconnected) {
664#ifdef DEBUG 664#ifdef VERBOSE_DEBUG
665 printk_ratelimited(KERN_DEBUG "%s: %s!\n", __func__, instance ? "disconnected" : "NULL instance"); 665 printk_ratelimited(KERN_DEBUG "%s: %s!\n", __func__, instance ? "disconnected" : "NULL instance");
666#endif 666#endif
667 err = -ENODEV; 667 err = -ENODEV;
@@ -1120,14 +1120,13 @@ int usbatm_usb_probe(struct usb_interface *intf, const struct usb_device_id *id,
1120 instance->rx_channel.buf_size = num_packets * maxpacket; 1120 instance->rx_channel.buf_size = num_packets * maxpacket;
1121 instance->rx_channel.packet_size = maxpacket; 1121 instance->rx_channel.packet_size = maxpacket;
1122 1122
1123#ifdef DEBUG
1124 for (i = 0; i < 2; i++) { 1123 for (i = 0; i < 2; i++) {
1125 struct usbatm_channel *channel = i ? 1124 struct usbatm_channel *channel = i ?
1126 &instance->tx_channel : &instance->rx_channel; 1125 &instance->tx_channel : &instance->rx_channel;
1127 1126
1128 dev_dbg(dev, "%s: using %d byte buffer for %s channel 0x%p\n", __func__, channel->buf_size, i ? "tx" : "rx", channel); 1127 dev_dbg(dev, "%s: using %d byte buffer for %s channel 0x%p\n",
1128 __func__, channel->buf_size, i ? "tx" : "rx", channel);
1129 } 1129 }
1130#endif
1131 1130
1132 /* initialize urbs */ 1131 /* initialize urbs */
1133 1132