diff options
author | David Brownell <david-b@pacbell.net> | 2006-05-01 13:58:33 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-06-21 12:40:48 -0700 |
commit | 05967118a6c354eaa5950429c70ad4c8daca94bf (patch) | |
tree | 000b297e0c8b673915389743587ef1a7218b8655 /drivers/base | |
parent | b7fe4a60f3a5a428832bf5dd9388e80f0d02fc2e (diff) | |
download | linux-3.10-05967118a6c354eaa5950429c70ad4c8daca94bf.tar.gz linux-3.10-05967118a6c354eaa5950429c70ad4c8daca94bf.tar.bz2 linux-3.10-05967118a6c354eaa5950429c70ad4c8daca94bf.zip |
[PATCH] Driver Core: CONFIG_DEBUG_PM covers drivers/base/power too
The drivers/base/power PM debug messages should appear when
either PM or driver model debug are enabled.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/power/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/base/power/Makefile b/drivers/base/power/Makefile index c0219ad94ac..ceeeba2c56c 100644 --- a/drivers/base/power/Makefile +++ b/drivers/base/power/Makefile @@ -4,3 +4,6 @@ obj-$(CONFIG_PM) += main.o suspend.o resume.o runtime.o sysfs.o ifeq ($(CONFIG_DEBUG_DRIVER),y) EXTRA_CFLAGS += -DDEBUG endif +ifeq ($(CONFIG_PM_DEBUG),y) +EXTRA_CFLAGS += -DDEBUG +endif |