diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-07-19 19:11:55 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-07-19 19:11:55 -0400 |
commit | a5d8c5c834d3cabf4b7b477c3f6ee923c25026fc (patch) | |
tree | 19fc04470569a3c2f227d5aac3078a15ac65bb32 /drivers/ide/pci/scc_pata.c | |
parent | 2229833c1365346b64357a9263fa724f74f5e376 (diff) |
ide: add ide_pci_device_t.host_flags (take 2)
* Rename ide_pci_device_t.flags to ide_pci_device_t.host_flags
and IDEPCI_FLAG_ISA_PORTS flag to IDE_HFLAG_ISA_PORTS.
* Add IDE_HFLAG_SINGLE flag for single channel devices.
* Convert core code and all IDE PCI drivers to use IDE_HFLAG_SINGLE
and remove no longer needed ide_pci_device_t.channels field.
v2:
* Fix issues noticed by Sergei:
- correct code alignment in scc_pata.c
- s/IDE_HFLAG_SINGLE/~IDE_HFLAG_SINGLE/ in serverworks.c
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/pci/scc_pata.c')
-rw-r--r-- | drivers/ide/pci/scc_pata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/pci/scc_pata.c b/drivers/ide/pci/scc_pata.c index fd4b1a24ecab..a1954d1c2879 100644 --- a/drivers/ide/pci/scc_pata.c +++ b/drivers/ide/pci/scc_pata.c | |||
@@ -772,9 +772,9 @@ static void __devinit init_hwif_scc(ide_hwif_t *hwif) | |||
772 | .init_setup = init_setup_scc, \ | 772 | .init_setup = init_setup_scc, \ |
773 | .init_iops = init_iops_scc, \ | 773 | .init_iops = init_iops_scc, \ |
774 | .init_hwif = init_hwif_scc, \ | 774 | .init_hwif = init_hwif_scc, \ |
775 | .channels = 1, \ | ||
776 | .autodma = AUTODMA, \ | 775 | .autodma = AUTODMA, \ |
777 | .bootable = ON_BOARD, \ | 776 | .bootable = ON_BOARD, \ |
777 | .host_flags = IDE_HFLAG_SINGLE, \ | ||
778 | } | 778 | } |
779 | 779 | ||
780 | static ide_pci_device_t scc_chipsets[] __devinitdata = { | 780 | static ide_pci_device_t scc_chipsets[] __devinitdata = { |