diff options
-rw-r--r-- | drivers/rapidio/Kconfig | 11 | ||||
-rw-r--r-- | drivers/rapidio/Makefile | 4 | ||||
-rw-r--r-- | drivers/rapidio/switches/Makefile | 4 |
3 files changed, 19 insertions, 0 deletions
diff --git a/drivers/rapidio/Kconfig b/drivers/rapidio/Kconfig index bcb5c2063370..070211a5955c 100644 --- a/drivers/rapidio/Kconfig +++ b/drivers/rapidio/Kconfig | |||
@@ -21,3 +21,14 @@ config RAPIDIO_ENABLE_RX_TX_PORTS | |||
21 | than Maintenance transfers. | 21 | than Maintenance transfers. |
22 | 22 | ||
23 | source "drivers/rapidio/switches/Kconfig" | 23 | source "drivers/rapidio/switches/Kconfig" |
24 | |||
25 | config RAPIDIO_DEBUG | ||
26 | bool "RapidIO subsystem debug messages" | ||
27 | depends on RAPIDIO | ||
28 | help | ||
29 | Say Y here if you want the RapidIO subsystem to produce a bunch of | ||
30 | debug messages to the system log. Select this if you are having a | ||
31 | problem with the RapidIO subsystem and want to see more of what is | ||
32 | going on. | ||
33 | |||
34 | If you are unsure about this, say N here. | ||
diff --git a/drivers/rapidio/Makefile b/drivers/rapidio/Makefile index 7c0e1818de51..b6139fe187bf 100644 --- a/drivers/rapidio/Makefile +++ b/drivers/rapidio/Makefile | |||
@@ -4,3 +4,7 @@ | |||
4 | obj-y += rio.o rio-access.o rio-driver.o rio-scan.o rio-sysfs.o | 4 | obj-y += rio.o rio-access.o rio-driver.o rio-scan.o rio-sysfs.o |
5 | 5 | ||
6 | obj-$(CONFIG_RAPIDIO) += switches/ | 6 | obj-$(CONFIG_RAPIDIO) += switches/ |
7 | |||
8 | ifeq ($(CONFIG_RAPIDIO_DEBUG),y) | ||
9 | EXTRA_CFLAGS += -DDEBUG | ||
10 | endif | ||
diff --git a/drivers/rapidio/switches/Makefile b/drivers/rapidio/switches/Makefile index 0fece0e6aa89..fe4adc3e8d5f 100644 --- a/drivers/rapidio/switches/Makefile +++ b/drivers/rapidio/switches/Makefile | |||
@@ -6,3 +6,7 @@ obj-$(CONFIG_RAPIDIO_TSI57X) += tsi57x.o | |||
6 | obj-$(CONFIG_RAPIDIO_CPS_XX) += idtcps.o | 6 | obj-$(CONFIG_RAPIDIO_CPS_XX) += idtcps.o |
7 | obj-$(CONFIG_RAPIDIO_TSI568) += tsi568.o | 7 | obj-$(CONFIG_RAPIDIO_TSI568) += tsi568.o |
8 | obj-$(CONFIG_RAPIDIO_TSI500) += tsi500.o | 8 | obj-$(CONFIG_RAPIDIO_TSI500) += tsi500.o |
9 | |||
10 | ifeq ($(CONFIG_RAPIDIO_DEBUG),y) | ||
11 | EXTRA_CFLAGS += -DDEBUG | ||
12 | endif | ||