summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorPatrick Mochel <mochel@osdl.org>2002-11-18 04:43:58 -0600
committerPatrick Mochel <mochel@osdl.org>2002-11-18 04:43:58 -0600
commitcfdcdb64484b1ba012d98e32184e9b1c4639e730 (patch)
treec6cb2a2bf00f039f4c56fb050397f4f14efae240 /drivers
parent175ceea9af88cc3a051e97cddeb77e8df792bb91 (diff)
make sure DEBUG is #undef'd so it's really turned off
...since macro using it was changed from #if to #ifdef..
Diffstat (limited to 'drivers')
-rw-r--r--drivers/base/bus.c2
-rw-r--r--drivers/base/core.c2
-rw-r--r--drivers/base/driver.c2
-rw-r--r--drivers/base/hotplug.c2
-rw-r--r--drivers/base/intf.c2
-rw-r--r--drivers/base/power.c2
-rw-r--r--drivers/base/sys.c2
7 files changed, 7 insertions, 7 deletions
diff --git a/drivers/base/bus.c b/drivers/base/bus.c
index 845c0a669f32..17145af25b1b 100644
--- a/drivers/base/bus.c
+++ b/drivers/base/bus.c
@@ -7,7 +7,7 @@
*
*/
-#define DEBUG 0
+#undef DEBUG
#include <linux/device.h>
#include <linux/module.h>
diff --git a/drivers/base/core.c b/drivers/base/core.c
index dd04ea679f02..d70221dd5f19 100644
--- a/drivers/base/core.c
+++ b/drivers/base/core.c
@@ -5,7 +5,7 @@
* 2002 Open Source Development Lab
*/
-#define DEBUG 0
+#undef DEBUG
#include <linux/device.h>
#include <linux/err.h>
diff --git a/drivers/base/driver.c b/drivers/base/driver.c
index 824ac9ee2e99..e4fd6a2214ec 100644
--- a/drivers/base/driver.c
+++ b/drivers/base/driver.c
@@ -3,7 +3,7 @@
*
*/
-#define DEBUG 0
+#undef DEBUG
#include <linux/device.h>
#include <linux/module.h>
diff --git a/drivers/base/hotplug.c b/drivers/base/hotplug.c
index 9a8a1a9b28f3..3499840e34b5 100644
--- a/drivers/base/hotplug.c
+++ b/drivers/base/hotplug.c
@@ -10,7 +10,7 @@
*
*/
-#define DEBUG 0
+#undef DEBUG
#include <linux/device.h>
#include <linux/slab.h>
diff --git a/drivers/base/intf.c b/drivers/base/intf.c
index 1876c8f0a651..8675812ac019 100644
--- a/drivers/base/intf.c
+++ b/drivers/base/intf.c
@@ -2,7 +2,7 @@
* intf.c - class-specific interface management
*/
-#define DEBUG 1
+#undef DEBUG
#include <linux/device.h>
#include <linux/module.h>
diff --git a/drivers/base/power.c b/drivers/base/power.c
index 280ca6d777cf..1cd4027feffa 100644
--- a/drivers/base/power.c
+++ b/drivers/base/power.c
@@ -8,7 +8,7 @@
*
*/
-#define DEBUG 0
+#undef DEBUG
#include <linux/device.h>
#include <linux/module.h>
diff --git a/drivers/base/sys.c b/drivers/base/sys.c
index 3fcc2a6912bd..3745757f5b89 100644
--- a/drivers/base/sys.c
+++ b/drivers/base/sys.c
@@ -10,7 +10,7 @@
* add themselves as children of the system bus.
*/
-#define DEBUG 1
+#undef DEBUG
#include <linux/device.h>
#include <linux/err.h>