Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 011507e4 authored by Alexandre Bounine's avatar Alexandre Bounine Committed by Linus Torvalds
Browse files

rapidio: add debug configuration option



Add debug configuration option for RapidIO subsystem.

Signed-off-by: default avatarAlexandre Bounine <alexandre.bounine@idt.com>
Cc: Matt Porter <mporter@kernel.crashing.org>
Cc: Li Yang <leoli@freescale.com>
Cc: Kumar Gala <galak@kernel.crashing.org>
Cc: Thomas Moll <thomas.moll@sysgo.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 68b04cd3
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -21,3 +21,14 @@ config RAPIDIO_ENABLE_RX_TX_PORTS
	  than Maintenance transfers.

source "drivers/rapidio/switches/Kconfig"

config RAPIDIO_DEBUG
	bool "RapidIO subsystem debug messages"
	depends on RAPIDIO
	help
	  Say Y here if you want the RapidIO subsystem to produce a bunch of
	  debug messages to the system log. Select this if you are having a
	  problem with the RapidIO subsystem and want to see more of what is
	  going on.

	  If you are unsure about this, say N here.
+4 −0
Original line number Diff line number Diff line
@@ -4,3 +4,7 @@
obj-y += rio.o rio-access.o rio-driver.o rio-scan.o rio-sysfs.o

obj-$(CONFIG_RAPIDIO)		+= switches/

ifeq ($(CONFIG_RAPIDIO_DEBUG),y)
EXTRA_CFLAGS += -DDEBUG
endif
+4 −0
Original line number Diff line number Diff line
@@ -6,3 +6,7 @@ obj-$(CONFIG_RAPIDIO_TSI57X) += tsi57x.o
obj-$(CONFIG_RAPIDIO_CPS_XX)	+= idtcps.o
obj-$(CONFIG_RAPIDIO_TSI568)	+= tsi568.o
obj-$(CONFIG_RAPIDIO_TSI500)	+= tsi500.o

ifeq ($(CONFIG_RAPIDIO_DEBUG),y)
EXTRA_CFLAGS += -DDEBUG
endif