mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
a3725c45c1
Add the RIO switch driver and definitions for IDT CPS-1848 and CPS-1616 Gen2 devices. Signed-off-by: Alexandre Bounine <alexandre.bounine@idt.com> Cc: Thomas Moll <thomas.moll@sysgo.com> Cc: Matt Porter <mporter@kernel.crashing.org> Cc: Li Yang <leoli@freescale.com> Cc: Kumar Gala <galak@kernel.crashing.org> Cc: Micha Nelissen <micha@neli.hopto.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
13 lines
306 B
Makefile
13 lines
306 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
|
|
obj-$(CONFIG_RAPIDIO_CPS_GEN2) += idt_gen2.o
|
|
|
|
ifeq ($(CONFIG_RAPIDIO_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|