aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/legacy/macide.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/legacy/macide.c')
-rw-r--r--drivers/ide/legacy/macide.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/drivers/ide/legacy/macide.c b/drivers/ide/legacy/macide.c
index d839df2239fc..b49cf8c2b91a 100644
--- a/drivers/ide/legacy/macide.c
+++ b/drivers/ide/legacy/macide.c
@@ -91,8 +91,8 @@ static const char *mac_ide_name[] =
91 91
92static int __init macide_init(void) 92static int __init macide_init(void)
93{ 93{
94 ide_hwif_t *hwif;
95 ide_ack_intr_t *ack_intr; 94 ide_ack_intr_t *ack_intr;
95 struct ide_host *host;
96 unsigned long base; 96 unsigned long base;
97 int irq; 97 int irq;
98 hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; 98 hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL };
@@ -125,13 +125,9 @@ static int __init macide_init(void)
125 125
126 macide_setup_ports(&hw, base, irq, ack_intr); 126 macide_setup_ports(&hw, base, irq, ack_intr);
127 127
128 hwif = ide_find_port(); 128 host = ide_host_alloc(NULL, hws);
129 if (hwif) { 129 if (host)
130 u8 index = hwif->index; 130 ide_host_register(host, NULL, hws);
131 u8 idx[4] = { index, 0xff, 0xff, 0xff };
132
133 ide_device_add(idx, NULL, hws);
134 }
135 131
136 return 0; 132 return 0;
137} 133}