* git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6: ide: build-fix for CONFIG_BLK_DEV_IDEDMA_PMAC=n Revert "ide: respect current DMA setting during resume"
···669670endif6710672config BLK_DEV_IDE_PMAC673 tristate "PowerMac on-board IDE support"674 depends on PPC_PMAC && IDE=y675 select IDE_TIMINGS0676 help677 This driver provides support for the on-board IDE controller on678 most of the recent Apple Power Macintoshes and PowerBooks.···690 these, those machine used to have the hard disk on hdc and the691 CD-ROM on hda. This option changes this to more natural hda for692 hard disk and hdc for CD-ROM.693-694-config BLK_DEV_IDEDMA_PMAC695- bool "PowerMac IDE DMA support"696- depends on BLK_DEV_IDE_PMAC697- select BLK_DEV_IDEDMA_PCI698- help699- This option allows the driver for the on-board IDE controller on700- Power Macintoshes and PowerBooks to use DMA (direct memory access)701- to transfer data to and from memory. Saying Y is safe and improves702- performance.703704config BLK_DEV_IDE_AU1XXX705 bool "IDE for AMD Alchemy Au1200"···904endif905906config BLK_DEV_IDEDMA907- def_bool BLK_DEV_IDEDMA_SFF || BLK_DEV_IDEDMA_PMAC || \908 BLK_DEV_IDEDMA_ICS || BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA909910endif # IDE
···669670endif671672+# TODO: BLK_DEV_IDEDMA_PCI -> BLK_DEV_IDEDMA_SFF673config BLK_DEV_IDE_PMAC674 tristate "PowerMac on-board IDE support"675 depends on PPC_PMAC && IDE=y676 select IDE_TIMINGS677+ select BLK_DEV_IDEDMA_PCI678 help679 This driver provides support for the on-board IDE controller on680 most of the recent Apple Power Macintoshes and PowerBooks.···688 these, those machine used to have the hard disk on hdc and the689 CD-ROM on hda. This option changes this to more natural hda for690 hard disk and hdc for CD-ROM.0000000000691692config BLK_DEV_IDE_AU1XXX693 bool "IDE for AMD Alchemy Au1200"···912endif913914config BLK_DEV_IDEDMA915+ def_bool BLK_DEV_IDEDMA_SFF || \916 BLK_DEV_IDEDMA_ICS || BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA917918endif # IDE
+4-2
drivers/ide/ide-io.c
···208 */209 if (drive->hwif->dma_ops == NULL)210 break;211- if (drive->dev_flags & IDE_DFLAG_USING_DMA)212- ide_set_dma(drive);00213 break;214 }215