diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2000-10-05 23:09:57 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2000-10-05 23:09:57 +0000 |
| commit | 1931cf940abe0486ab60e2f09ce5673f5f8feccf (patch) | |
| tree | 9d8d1948978c077c015ec37457eccdd03dcc20c8 /sys/dev/ata | |
| parent | 4614ea87204596d897e605a0921fb21d4ab6fc86 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ata')
| -rw-r--r-- | sys/dev/ata/ata-all.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ata/ata-all.c b/sys/dev/ata/ata-all.c index d8d2faee7c08..2b3001b3aeb0 100644 --- a/sys/dev/ata/ata-all.c +++ b/sys/dev/ata/ata-all.c @@ -666,7 +666,7 @@ ata_pci_setup_intr(device_t dev, device_t child, struct resource *irq, { if (ATA_MASTERDEV(dev)) { #ifdef __alpha__ - return alpha_platform_setup_ide_intr(irq, intr, arg, cookiep); + return alpha_platform_setup_ide_intr(child, irq, intr, arg, cookiep); #else return BUS_SETUP_INTR(device_get_parent(dev), child, irq, flags, intr, arg, cookiep); @@ -683,7 +683,7 @@ ata_pci_teardown_intr(device_t dev, device_t child, struct resource *irq, { if (ATA_MASTERDEV(dev)) { #ifdef __alpha__ - return alpha_platform_teardown_ide_intr(irq, cookie); + return alpha_platform_teardown_ide_intr(child, irq, cookie); #else return BUS_TEARDOWN_INTR(device_get_parent(dev), child, irq, cookie); #endif |
