]> Pileus Git - ~andy/linux/commitdiff
USB: serial: remove dbg() from usb/serial.h
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Sep 2012 08:38:33 +0000 (09:38 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Sep 2012 08:38:33 +0000 (09:38 +0100)
Now that all in-kernel users of the dbg() macro are gone, we can remove
it from the include/linux/usb/serial.h file.

Good riddance.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/usb/serial.h

index 6bed6db619b2449421c4817e4150ab7bfa72b793..e71bc5ef234aabc0eccd2ad22bb29e80c7bbc873 100644 (file)
@@ -365,14 +365,6 @@ static inline void usb_serial_debug_data(int debug,
                           function, size, size, data);
 }
 
-/* Use our own dbg macro */
-#undef dbg
-#define dbg(format, arg...)                                            \
-do {                                                                   \
-       if (debug)                                                      \
-               printk(KERN_DEBUG "%s: " format "\n", __FILE__, ##arg); \
-} while (0)
-
 /*
  * Macro for reporting errors in write path to avoid inifinite loop
  * when port is used as a console.