xen/pciback: Remove the DEBUG option.
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Tue, 12 Jul 2011 19:29:48 +0000 (15:29 -0400)
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Wed, 20 Jul 2011 01:03:35 +0000 (21:03 -0400)
The latter is easily fixed - by the developer compiling the
module with -DDEBUG. And during runtime - the loglvl provides
quite a lot of useful data.

Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
drivers/xen/Kconfig
drivers/xen/xen-pciback/Makefile

index 8af0792..0b6989f 100644 (file)
@@ -139,13 +139,4 @@ config XEN_PCIDEV_BACKEND_PASS
 
 endchoice
 
-config XEN_PCIDEV_BE_DEBUG
-       bool "Xen PCI Backend Debugging"
-       depends on XEN_PCIDEV_BACKEND
-       default n
-       help
-         Allows to observe all of the traffic from the frontend/backend
-         when reading and writting to the configuration registers.
-         If in doubt, say no.
-
 endmenu
index e79c518..2903967 100644 (file)
@@ -6,7 +6,3 @@ xen-pciback-y += conf_space.o conf_space_header.o \
                 conf_space_quirks.o
 xen-pciback-$(CONFIG_XEN_PCIDEV_BACKEND_VPCI) += vpci.o
 xen-pciback-$(CONFIG_XEN_PCIDEV_BACKEND_PASS) += passthrough.o
-
-ifeq ($(CONFIG_XEN_PCIDEV_BE_DEBUG),y)
-EXTRA_CFLAGS += -DDEBUG
-endif