fdf90abc00
Add a configuration option to build RapidIO subsystem core code as a loadable kernel module. Currently this option is available only for x86-based platforms, with the additional patch for PowerPC planned to be provided later. This patch replaces kernel command line parameter "riohdid=" with its module-specific analog "rapidio.hdid=". 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: Andre van Herk <andre.van.herk@Prodrive.nl> Cc: Micha Nelissen <micha.nelissen@Prodrive.nl> Cc: Stef van Os <stef.van.os@Prodrive.nl> Cc: Jean Delvare <jdelvare@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
13 lines
312 B
Makefile
13 lines
312 B
Makefile
#
|
|
# Makefile for RapidIO interconnect services
|
|
#
|
|
obj-$(CONFIG_RAPIDIO) += rapidio.o
|
|
rapidio-y := rio.o rio-access.o rio-driver.o rio-sysfs.o
|
|
|
|
obj-$(CONFIG_RAPIDIO_ENUM_BASIC) += rio-scan.o
|
|
|
|
obj-$(CONFIG_RAPIDIO) += switches/
|
|
obj-$(CONFIG_RAPIDIO) += devices/
|
|
|
|
subdir-ccflags-$(CONFIG_RAPIDIO_DEBUG) := -DDEBUG
|