ffd4f6f0ee
CONFIG_BLK_DEV_4DRIVES deserves its own host driver: * Add drivers/ide/legacy/ide-4drives.c and move "4drives" support there. * Add ide-4drives.o in the link order after all other legacy host drivers enabled by "ide0=" options (they all are mutually exclusive). * Make ide-4drives host driver probe itself for IDE devices instead of indirectly depending on ide_generic host driver. * Add "probe" module parameter to ide-4drives and update documentation. v2: * s/paramater/parameter/ in ide.txt. (Noticed by Randy Dunlap) v3: * s/ide_4drives.probe/ide-4drives.probe/ in help entry. (Noticed by Sergei Shtylyov) Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
25 lines
675 B
Makefile
25 lines
675 B
Makefile
|
|
# link order is important here
|
|
|
|
obj-$(CONFIG_BLK_DEV_ALI14XX) += ali14xx.o
|
|
obj-$(CONFIG_BLK_DEV_UMC8672) += umc8672.o
|
|
obj-$(CONFIG_BLK_DEV_DTC2278) += dtc2278.o
|
|
obj-$(CONFIG_BLK_DEV_HT6560B) += ht6560b.o
|
|
obj-$(CONFIG_BLK_DEV_QD65XX) += qd65xx.o
|
|
obj-$(CONFIG_BLK_DEV_4DRIVES) += ide-4drives.o
|
|
|
|
obj-$(CONFIG_BLK_DEV_GAYLE) += gayle.o
|
|
obj-$(CONFIG_BLK_DEV_FALCON_IDE) += falconide.o
|
|
obj-$(CONFIG_BLK_DEV_MAC_IDE) += macide.o
|
|
obj-$(CONFIG_BLK_DEV_Q40IDE) += q40ide.o
|
|
obj-$(CONFIG_BLK_DEV_BUDDHA) += buddha.o
|
|
|
|
ifeq ($(CONFIG_BLK_DEV_IDECS), m)
|
|
obj-m += ide-cs.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_BLK_DEV_PLATFORM), m)
|
|
obj-m += ide_platform.o
|
|
endif
|
|
|
|
EXTRA_CFLAGS := -Idrivers/ide
|