aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/power
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2007-11-08 06:59:13 -0500
committerSam Ravnborg <sam@ravnborg.org>2008-01-28 17:14:35 -0500
commit9e233625fbee1f977929a5406533b96011f1a06b (patch)
treeab3d3f6a9f4aa8839a3cabfee5052dfd07545669 /drivers/base/power
parent800074345544ae6ec06c77b1a3f7ba032f84bd10 (diff)
convert drivers/base/power/Makefile to ccflags
This patch converts drivers/base/power/Makefile to use ccflags instead of EXTRA_CFLAGS. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'drivers/base/power')
-rw-r--r--drivers/base/power/Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/base/power/Makefile b/drivers/base/power/Makefile
index 06a86fe6a78d..de28dfd3b96c 100644
--- a/drivers/base/power/Makefile
+++ b/drivers/base/power/Makefile
@@ -2,9 +2,5 @@ obj-$(CONFIG_PM) += sysfs.o
2obj-$(CONFIG_PM_SLEEP) += main.o 2obj-$(CONFIG_PM_SLEEP) += main.o
3obj-$(CONFIG_PM_TRACE) += trace.o 3obj-$(CONFIG_PM_TRACE) += trace.o
4 4
5ifeq ($(CONFIG_DEBUG_DRIVER),y) 5ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG
6EXTRA_CFLAGS += -DDEBUG 6ccflags-$(CONFIG_PM_VERBOSE) += -DDEBUG
7endif
8ifeq ($(CONFIG_PM_VERBOSE),y)
9EXTRA_CFLAGS += -DDEBUG
10endif