33dced2ea5
This is the driver for the Toshiba TC86C001 GOKU-S PCI IDE controller, completely reworked from the original brain-damaged Toshiba's 2.4 version. This single channel UltraDMA/66 controller is very simple in programming, yet Toshiba managed to plant many interesting bugs in it. The particularly nasty "limitation 5" (as they call the errata) caused me to abuse the IDE core in a possibly most interesting way so far. However, this is still better than the #ifdef mess in drivers/ide/ide-io.c that the original version included (well, it had much more mess)... Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Acked-by: Alan Cox <alan@redhat.com> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
37 lines
1.5 KiB
Makefile
37 lines
1.5 KiB
Makefile
|
|
obj-$(CONFIG_BLK_DEV_AEC62XX) += aec62xx.o
|
|
obj-$(CONFIG_BLK_DEV_ALI15X3) += alim15x3.o
|
|
obj-$(CONFIG_BLK_DEV_AMD74XX) += amd74xx.o
|
|
obj-$(CONFIG_BLK_DEV_ATIIXP) += atiixp.o
|
|
obj-$(CONFIG_BLK_DEV_CMD64X) += cmd64x.o
|
|
obj-$(CONFIG_BLK_DEV_CS5520) += cs5520.o
|
|
obj-$(CONFIG_BLK_DEV_CS5530) += cs5530.o
|
|
obj-$(CONFIG_BLK_DEV_CS5535) += cs5535.o
|
|
obj-$(CONFIG_BLK_DEV_SC1200) += sc1200.o
|
|
obj-$(CONFIG_BLK_DEV_CY82C693) += cy82c693.o
|
|
obj-$(CONFIG_BLK_DEV_HPT34X) += hpt34x.o
|
|
obj-$(CONFIG_BLK_DEV_HPT366) += hpt366.o
|
|
#obj-$(CONFIG_BLK_DEV_HPT37X) += hpt37x.o
|
|
obj-$(CONFIG_BLK_DEV_IT821X) += it821x.o
|
|
obj-$(CONFIG_BLK_DEV_JMICRON) += jmicron.o
|
|
obj-$(CONFIG_BLK_DEV_NS87415) += ns87415.o
|
|
obj-$(CONFIG_BLK_DEV_OPTI621) += opti621.o
|
|
obj-$(CONFIG_BLK_DEV_PDC202XX_OLD) += pdc202xx_old.o
|
|
obj-$(CONFIG_BLK_DEV_PDC202XX_NEW) += pdc202xx_new.o
|
|
obj-$(CONFIG_BLK_DEV_PIIX) += piix.o
|
|
obj-$(CONFIG_BLK_DEV_RZ1000) += rz1000.o
|
|
obj-$(CONFIG_BLK_DEV_SVWKS) += serverworks.o
|
|
obj-$(CONFIG_BLK_DEV_SGIIOC4) += sgiioc4.o
|
|
obj-$(CONFIG_BLK_DEV_SIIMAGE) += siimage.o
|
|
obj-$(CONFIG_BLK_DEV_SIS5513) += sis5513.o
|
|
obj-$(CONFIG_BLK_DEV_SL82C105) += sl82c105.o
|
|
obj-$(CONFIG_BLK_DEV_SLC90E66) += slc90e66.o
|
|
obj-$(CONFIG_BLK_DEV_TC86C001) += tc86c001.o
|
|
obj-$(CONFIG_BLK_DEV_TRIFLEX) += triflex.o
|
|
obj-$(CONFIG_BLK_DEV_TRM290) += trm290.o
|
|
obj-$(CONFIG_BLK_DEV_VIA82CXXX) += via82cxxx.o
|
|
|
|
# Must appear at the end of the block
|
|
obj-$(CONFIG_BLK_DEV_GENERIC) += generic.o
|
|
|
|
EXTRA_CFLAGS := -Idrivers/ide
|