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/piix.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/piix.c')
-rw-r--r-- | drivers/ide/pci/piix.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/ide/pci/piix.c b/drivers/ide/pci/piix.c index 1372c35be035..a4f88d25b16d 100644 --- a/drivers/ide/pci/piix.c +++ b/drivers/ide/pci/piix.c | |||
@@ -495,7 +495,6 @@ static void __devinit init_hwif_piix(ide_hwif_t *hwif) | |||
495 | .name = name_str, \ | 495 | .name = name_str, \ |
496 | .init_chipset = init_chipset_piix, \ | 496 | .init_chipset = init_chipset_piix, \ |
497 | .init_hwif = init_hwif_piix, \ | 497 | .init_hwif = init_hwif_piix, \ |
498 | .channels = 2, \ | ||
499 | .autodma = AUTODMA, \ | 498 | .autodma = AUTODMA, \ |
500 | .enablebits = {{0x41,0x80,0x80}, {0x43,0x80,0x80}}, \ | 499 | .enablebits = {{0x41,0x80,0x80}, {0x43,0x80,0x80}}, \ |
501 | .bootable = ON_BOARD, \ | 500 | .bootable = ON_BOARD, \ |
@@ -514,11 +513,10 @@ static ide_pci_device_t piix_pci_info[] __devinitdata = { | |||
514 | */ | 513 | */ |
515 | .name = "MPIIX", | 514 | .name = "MPIIX", |
516 | .init_hwif = init_hwif_piix, | 515 | .init_hwif = init_hwif_piix, |
517 | .channels = 2, | ||
518 | .autodma = NODMA, | 516 | .autodma = NODMA, |
519 | .enablebits = {{0x6d,0xc0,0x80}, {0x6d,0xc0,0xc0}}, | 517 | .enablebits = {{0x6d,0xc0,0x80}, {0x6d,0xc0,0xc0}}, |
520 | .bootable = ON_BOARD, | 518 | .bootable = ON_BOARD, |
521 | .flags = IDEPCI_FLAG_ISA_PORTS | 519 | .host_flags = IDE_HFLAG_ISA_PORTS, |
522 | }, | 520 | }, |
523 | 521 | ||
524 | /* 3 */ DECLARE_PIIX_DEV("PIIX3", 0x00), /* no udma */ | 522 | /* 3 */ DECLARE_PIIX_DEV("PIIX3", 0x00), /* no udma */ |