USB: usbatm: remove CONFIG_USB_DEBUG dependancy
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 28 Jun 2013 18:32:54 +0000 (11:32 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Jul 2013 23:32:36 +0000 (16:32 -0700)
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>
drivers/usb/atm/Makefile
drivers/usb/atm/usbatm.c

index a5d792ec3ad59328a08f544780acb9a791eef67a..ac278946b06c037ddaa88651b1843820e6627763 100644 (file)
@@ -1,9 +1,6 @@
 #
 # Makefile for USB ATM/xDSL drivers
 #
-
-ccflags-$(CONFIG_USB_DEBUG) := -DDEBUG
-
 obj-$(CONFIG_USB_CXACRU)       += cxacru.o
 obj-$(CONFIG_USB_SPEEDTOUCH)   += speedtch.o
 obj-$(CONFIG_USB_UEAGLEATM)    += ueagle-atm.o
index 231ef4712e84508f1cae0b4caa3cfee73e891480..25a7bfcf666c6fdaa92b202bb6b5b154326013e8 100644 (file)
@@ -661,7 +661,7 @@ static int usbatm_atm_send(struct atm_vcc *vcc, struct sk_buff *skb)
 
        /* racy disconnection check - fine */
        if (!instance || instance->disconnected) {
-#ifdef DEBUG
+#ifdef VERBOSE_DEBUG
                printk_ratelimited(KERN_DEBUG "%s: %s!\n", __func__, instance ? "disconnected" : "NULL instance");
 #endif
                err = -ENODEV;
@@ -1120,14 +1120,13 @@ int usbatm_usb_probe(struct usb_interface *intf, const struct usb_device_id *id,
        instance->rx_channel.buf_size = num_packets * maxpacket;
        instance->rx_channel.packet_size = maxpacket;
 
-#ifdef DEBUG
        for (i = 0; i < 2; i++) {
                struct usbatm_channel *channel = i ?
                        &instance->tx_channel : &instance->rx_channel;
 
-               dev_dbg(dev, "%s: using %d byte buffer for %s channel 0x%p\n", __func__, channel->buf_size, i ? "tx" : "rx", channel);
+               dev_dbg(dev, "%s: using %d byte buffer for %s channel 0x%p\n",
+                       __func__, channel->buf_size, i ? "tx" : "rx", channel);
        }
-#endif
 
        /* initialize urbs */
 
This page took 0.025483 seconds and 5 git commands to generate.