Commit c9a50cc9 authored by David Brownell's avatar David Brownell Committed by Greg Kroah-Hartman

[PATCH] USB: hcd uses EXTRA_CFLAGS for -DDEBUG

This modifies the HCD builds to automatically "-DDEBUG" if
CONFIG_USB_DEBUG is selected.  It's just a minor source code cleanup,
guaranteeing consistency.
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 704aa0b7
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
# Makefile for USB Host Controller Drivers # Makefile for USB Host Controller Drivers
# #
ifeq ($(CONFIG_USB_DEBUG),y)
EXTRA_CFLAGS += -DDEBUG
endif
obj-$(CONFIG_PCI) += pci-quirks.o obj-$(CONFIG_PCI) += pci-quirks.o
obj-$(CONFIG_USB_EHCI_HCD) += ehci-hcd.o obj-$(CONFIG_USB_EHCI_HCD) += ehci-hcd.o
......
...@@ -17,13 +17,6 @@ ...@@ -17,13 +17,6 @@
*/ */
#include <linux/config.h> #include <linux/config.h>
#ifdef CONFIG_USB_DEBUG
#define DEBUG
#else
#undef DEBUG
#endif
#include <linux/module.h> #include <linux/module.h>
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/dmapool.h> #include <linux/dmapool.h>
......
...@@ -75,13 +75,6 @@ ...@@ -75,13 +75,6 @@
*/ */
#include <linux/config.h> #include <linux/config.h>
#ifdef CONFIG_USB_DEBUG
# define DEBUG
#else
# undef DEBUG
#endif
#include <linux/module.h> #include <linux/module.h>
#include <linux/moduleparam.h> #include <linux/moduleparam.h>
#include <linux/pci.h> #include <linux/pci.h>
......
...@@ -9,12 +9,6 @@ ...@@ -9,12 +9,6 @@
*/ */
#include <linux/config.h> #include <linux/config.h>
#ifdef CONFIG_USB_DEBUG
#define DEBUG
#else
#undef DEBUG
#endif
#include <linux/types.h> #include <linux/types.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/pci.h> #include <linux/pci.h>
......
...@@ -32,13 +32,6 @@ ...@@ -32,13 +32,6 @@
#undef PACKET_TRACE #undef PACKET_TRACE
#include <linux/config.h> #include <linux/config.h>
#ifdef CONFIG_USB_DEBUG
# define DEBUG
#else
# undef DEBUG
#endif
#include <linux/module.h> #include <linux/module.h>
#include <linux/moduleparam.h> #include <linux/moduleparam.h>
#include <linux/kernel.h> #include <linux/kernel.h>
......
...@@ -38,7 +38,7 @@ MODULE_LICENSE("GPL"); ...@@ -38,7 +38,7 @@ MODULE_LICENSE("GPL");
/* MACROS */ /* MACROS */
/*====================================================================*/ /*====================================================================*/
#if defined(DEBUG) || defined(CONFIG_USB_DEBUG) || defined(PCMCIA_DEBUG) #if defined(DEBUG) || defined(PCMCIA_DEBUG)
static int pc_debug = 0; static int pc_debug = 0;
module_param(pc_debug, int, 0644); module_param(pc_debug, int, 0644);
...@@ -129,7 +129,8 @@ static int sl811_hc_init(struct device *parent, ioaddr_t base_addr, int irq) ...@@ -129,7 +129,8 @@ static int sl811_hc_init(struct device *parent, ioaddr_t base_addr, int irq)
resources[2].end = base_addr + 1; resources[2].end = base_addr + 1;
/* The driver core will probe for us. We know sl811-hcd has been /* The driver core will probe for us. We know sl811-hcd has been
* initialized already because of the link order dependency. * initialized already because of the link order dependency created
* by referencing "sl811h_driver".
*/ */
platform_dev.name = sl811h_driver.name; platform_dev.name = sl811h_driver.name;
return platform_device_register(&platform_dev); return platform_device_register(&platform_dev);
......
...@@ -23,11 +23,6 @@ ...@@ -23,11 +23,6 @@
*/ */
#include <linux/config.h> #include <linux/config.h>
#ifdef CONFIG_USB_DEBUG
#define DEBUG
#else
#undef DEBUG
#endif
#include <linux/module.h> #include <linux/module.h>
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/kernel.h> #include <linux/kernel.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment