8cb1f567f4
This is now very similar to pata_platform.c, they both use same platform data structure and same resources. To achieve that, byte_lanes_swapping platform data variable and platform specified iops removed from that driver. It's fine, since those were never used anyway. pata_platform and ide_platform are carrying same driver names, to easily switch between these drivers, without need to touch platform code. Bart: - build fix from Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> Signed-off-by: Vitaly Bordug <vitb@kernel.crashing.org> Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com> Acked-by: Alan Cox <alan@redhat.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
16 lines
392 B
Makefile
16 lines
392 B
Makefile
|
|
obj-$(CONFIG_BLK_DEV_ALI14XX) += ali14xx.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_UMC8672) += umc8672.o
|
|
|
|
obj-$(CONFIG_BLK_DEV_IDECS) += ide-cs.o
|
|
|
|
obj-$(CONFIG_BLK_DEV_PLATFORM) += ide_platform.o
|
|
|
|
# Last of all
|
|
obj-$(CONFIG_BLK_DEV_HD) += hd.o
|
|
|
|
EXTRA_CFLAGS := -Idrivers/ide
|