aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/xen/Kconfig9
-rw-r--r--drivers/xen/xen-pciback/Makefile4
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
140endchoice 140endchoice
141 141
142config 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
151endmenu 142endmenu
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
7xen-pciback-$(CONFIG_XEN_PCIDEV_BACKEND_VPCI) += vpci.o 7xen-pciback-$(CONFIG_XEN_PCIDEV_BACKEND_VPCI) += vpci.o
8xen-pciback-$(CONFIG_XEN_PCIDEV_BACKEND_PASS) += passthrough.o 8xen-pciback-$(CONFIG_XEN_PCIDEV_BACKEND_PASS) += passthrough.o
9
10ifeq ($(CONFIG_XEN_PCIDEV_BE_DEBUG),y)
11EXTRA_CFLAGS += -DDEBUG
12endif