diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-02-16 20:40:25 -0500 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-02-16 20:40:25 -0500 |
commit | 2ad1e558a2305c2b3d5099ee2f4a5929307c20ca (patch) | |
tree | 79a530648cc26184c3b2e3933c0ebad614329b5b /drivers/ide/ppc | |
parent | 0ecdca26e556eae9668ce6de9554757dddb942ef (diff) |
ide: convert ide_hwif_t.mmio into flag (v2)
All users of ->mmio == 1 are gone so convert ->mmio into flag.
Noticed by Alan Cox.
v2:
* updated for scc_pata
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ppc')
-rw-r--r-- | drivers/ide/ppc/pmac.c | 2 | ||||
-rw-r--r-- | drivers/ide/ppc/scc_pata.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/ppc/pmac.c b/drivers/ide/ppc/pmac.c index d8ea23710bf0..c547c76533d5 100644 --- a/drivers/ide/ppc/pmac.c +++ b/drivers/ide/ppc/pmac.c | |||
@@ -1237,7 +1237,7 @@ pmac_ide_setup_device(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif) | |||
1237 | hwif->OUTBSYNC = pmac_outbsync; | 1237 | hwif->OUTBSYNC = pmac_outbsync; |
1238 | 1238 | ||
1239 | /* Tell common code _not_ to mess with resources */ | 1239 | /* Tell common code _not_ to mess with resources */ |
1240 | hwif->mmio = 2; | 1240 | hwif->mmio = 1; |
1241 | hwif->hwif_data = pmif; | 1241 | hwif->hwif_data = pmif; |
1242 | pmac_ide_init_hwif_ports(&hwif->hw, pmif->regbase, 0, &hwif->irq); | 1242 | pmac_ide_init_hwif_ports(&hwif->hw, pmif->regbase, 0, &hwif->irq); |
1243 | memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->io_ports)); | 1243 | memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->io_ports)); |
diff --git a/drivers/ide/ppc/scc_pata.c b/drivers/ide/ppc/scc_pata.c index de9110803745..f05117e8fdb9 100644 --- a/drivers/ide/ppc/scc_pata.c +++ b/drivers/ide/ppc/scc_pata.c | |||
@@ -668,7 +668,7 @@ static void __devinit init_mmio_iops_scc(ide_hwif_t *hwif) | |||
668 | hwif->irq = hwif->pci_dev->irq; | 668 | hwif->irq = hwif->pci_dev->irq; |
669 | hwif->dma_base = dma_base; | 669 | hwif->dma_base = dma_base; |
670 | hwif->config_data = ports->ctl; | 670 | hwif->config_data = ports->ctl; |
671 | hwif->mmio = 2; | 671 | hwif->mmio = 1; |
672 | } | 672 | } |
673 | 673 | ||
674 | /** | 674 | /** |