diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2008-04-28 16:33:48 -0600 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-04-29 03:22:14 -0400 |
commit | 1bd17e63a068db6f464925a79b1cc4b27a8b1af9 (patch) | |
tree | c5d3b714c8bfeaa05ee42933d9faa1eed0381691 /drivers/pnp/pnpacpi | |
parent | a01e035ebb552223c03f2d9138ffc73f2d4d3965 (diff) | |
download | linux-1bd17e63a068db6f464925a79b1cc4b27a8b1af9.tar.gz linux-1bd17e63a068db6f464925a79b1cc4b27a8b1af9.tar.bz2 linux-1bd17e63a068db6f464925a79b1cc4b27a8b1af9.zip |
PNP: turn on -DDEBUG when CONFIG_PNP_DEBUG is set
Turn on -DDEBUG in CFLAGS when CONFIG_PNP_DEBUG=y. This makes
dev_dbg() do what you expect.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Acked-by: Rene Herman <rene.herman@gmail.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/pnp/pnpacpi')
-rw-r--r-- | drivers/pnp/pnpacpi/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/pnp/pnpacpi/Makefile b/drivers/pnp/pnpacpi/Makefile index 905326fcca85..2d7a1e6908be 100644 --- a/drivers/pnp/pnpacpi/Makefile +++ b/drivers/pnp/pnpacpi/Makefile @@ -3,3 +3,7 @@ # obj-y := core.o rsparser.o + +ifeq ($(CONFIG_PNP_DEBUG),y) +EXTRA_CFLAGS += -DDEBUG +endif |