diff options
author | Ben Collins <bcollins@ubuntu.com> | 2007-07-19 04:47:27 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 13:04:42 -0400 |
commit | a0349828d6d6f95c445674c2953ee9db75c11f8f (patch) | |
tree | 1b511d59de0b437aa2724adfc403fb36ff1e2dfd /drivers/base/power | |
parent | 328616e3b76859f1abdd08a8df1ddbb7bb81f807 (diff) |
PM: Do not require dev spew to get PM_DEBUG
In order to enable things like PM_TRACE, you're required to enable
PM_DEBUG, which sends a large spew of messages on boot, and often times can
overflow dmesg buffer.
Create new PM_VERBOSE and shift that to be the option that enables
drivers/base/power's messages.
Signed-off-by: Ben Collins <bcollins@ubuntu.com>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: Pavel Machek <pavel@ucw.cz>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/base/power')
-rw-r--r-- | drivers/base/power/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/power/Makefile b/drivers/base/power/Makefile index fff178007208..966a5e287415 100644 --- a/drivers/base/power/Makefile +++ b/drivers/base/power/Makefile | |||
@@ -5,6 +5,6 @@ obj-$(CONFIG_PM_TRACE) += trace.o | |||
5 | ifeq ($(CONFIG_DEBUG_DRIVER),y) | 5 | ifeq ($(CONFIG_DEBUG_DRIVER),y) |
6 | EXTRA_CFLAGS += -DDEBUG | 6 | EXTRA_CFLAGS += -DDEBUG |
7 | endif | 7 | endif |
8 | ifeq ($(CONFIG_PM_DEBUG),y) | 8 | ifeq ($(CONFIG_PM_VERBOSE),y) |
9 | EXTRA_CFLAGS += -DDEBUG | 9 | EXTRA_CFLAGS += -DDEBUG |
10 | endif | 10 | endif |