diff options
author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-07-12 15:29:48 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-07-19 21:03:35 -0400 |
commit | 778999703db6d875c22e1a8d02c8296ad4648958 (patch) | |
tree | a9497252e6c1c7d1b008c79e4322d0768344bcac /drivers/xen | |
parent | a92336a1176b2119eaa990a1e8bf3109665fdbc6 (diff) |
xen/pciback: Remove the DEBUG option.
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>
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/Kconfig | 9 | ||||
-rw-r--r-- | drivers/xen/xen-pciback/Makefile | 4 |
2 files changed, 0 insertions, 13 deletions
diff --git a/drivers/xen/Kconfig b/drivers/xen/Kconfig index 8af0792dfd67..0b6989f92041 100644 --- a/drivers/xen/Kconfig +++ b/drivers/xen/Kconfig | |||
@@ -139,13 +139,4 @@ config XEN_PCIDEV_BACKEND_PASS | |||
139 | 139 | ||
140 | endchoice | 140 | endchoice |
141 | 141 | ||
142 | config XEN_PCIDEV_BE_DEBUG | ||
143 | bool "Xen PCI Backend Debugging" | ||
144 | depends on XEN_PCIDEV_BACKEND | ||
145 | default n | ||
146 | help | ||
147 | Allows to observe all of the traffic from the frontend/backend | ||
148 | when reading and writting to the configuration registers. | ||
149 | If in doubt, say no. | ||
150 | |||
151 | endmenu | 142 | endmenu |
diff --git a/drivers/xen/xen-pciback/Makefile b/drivers/xen/xen-pciback/Makefile index e79c518afc9a..290396766f07 100644 --- a/drivers/xen/xen-pciback/Makefile +++ b/drivers/xen/xen-pciback/Makefile | |||
@@ -6,7 +6,3 @@ xen-pciback-y += conf_space.o conf_space_header.o \ | |||
6 | conf_space_quirks.o | 6 | conf_space_quirks.o |
7 | xen-pciback-$(CONFIG_XEN_PCIDEV_BACKEND_VPCI) += vpci.o | 7 | xen-pciback-$(CONFIG_XEN_PCIDEV_BACKEND_VPCI) += vpci.o |
8 | xen-pciback-$(CONFIG_XEN_PCIDEV_BACKEND_PASS) += passthrough.o | 8 | xen-pciback-$(CONFIG_XEN_PCIDEV_BACKEND_PASS) += passthrough.o |
9 | |||
10 | ifeq ($(CONFIG_XEN_PCIDEV_BE_DEBUG),y) | ||
11 | EXTRA_CFLAGS += -DDEBUG | ||
12 | endif | ||