diff options
Diffstat (limited to 'drivers/ide/ppc/mpc8xx.c')
-rw-r--r-- | drivers/ide/ppc/mpc8xx.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/ide/ppc/mpc8xx.c b/drivers/ide/ppc/mpc8xx.c index 467656f06ccc..0fd98489d587 100644 --- a/drivers/ide/ppc/mpc8xx.c +++ b/drivers/ide/ppc/mpc8xx.c | |||
@@ -442,6 +442,10 @@ static void m8xx_ide_set_pio_mode(ide_drive_t *drive, const u8 pio) | |||
442 | #endif /* defined(CONFIG_IDE_8xx_PCCARD) || defined(CONFIG_IDE_8xx_PCMCIA */ | 442 | #endif /* defined(CONFIG_IDE_8xx_PCCARD) || defined(CONFIG_IDE_8xx_PCMCIA */ |
443 | } | 443 | } |
444 | 444 | ||
445 | static const struct ide_port_ops m8xx_port_ops = { | ||
446 | .set_pio_mode = m8xx_ide_set_pio_mode, | ||
447 | }; | ||
448 | |||
445 | static void | 449 | static void |
446 | ide_interrupt_ack (void *dev) | 450 | ide_interrupt_ack (void *dev) |
447 | { | 451 | { |
@@ -812,7 +816,7 @@ static int __init mpc8xx_ide_probe(void) | |||
812 | ide_init_port_hw(hwif, &hw); | 816 | ide_init_port_hw(hwif, &hw); |
813 | hwif->mmio = 1; | 817 | hwif->mmio = 1; |
814 | hwif->pio_mask = ATA_PIO4; | 818 | hwif->pio_mask = ATA_PIO4; |
815 | hwif->set_pio_mode = m8xx_ide_set_pio_mode; | 819 | hwif->port_ops = &m8xx_port_ops; |
816 | 820 | ||
817 | idx[0] = 0; | 821 | idx[0] = 0; |
818 | } | 822 | } |
@@ -824,7 +828,7 @@ static int __init mpc8xx_ide_probe(void) | |||
824 | ide_init_port_hw(mate, &hw); | 828 | ide_init_port_hw(mate, &hw); |
825 | mate->mmio = 1; | 829 | mate->mmio = 1; |
826 | mate->pio_mask = ATA_PIO4; | 830 | mate->pio_mask = ATA_PIO4; |
827 | mate->set_pio_mode = m8xx_ide_set_pio_mode; | 831 | mate->port_ops = &m8xx_port_ops; |
828 | 832 | ||
829 | idx[1] = 1; | 833 | idx[1] = 1; |
830 | } | 834 | } |