mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 08:46:52 +07:00
011507e49a
Add debug configuration option for RapidIO subsystem. Signed-off-by: Alexandre 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: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
13 lines
261 B
Makefile
13 lines
261 B
Makefile
#
|
|
# Makefile for RIO switches
|
|
#
|
|
|
|
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
|