aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/legacy/buddha.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/legacy/buddha.c')
-rw-r--r--drivers/ide/legacy/buddha.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/drivers/ide/legacy/buddha.c b/drivers/ide/legacy/buddha.c
index 0497e7f85b09..c61bc6a1db36 100644
--- a/drivers/ide/legacy/buddha.c
+++ b/drivers/ide/legacy/buddha.c
@@ -37,6 +37,8 @@
37#define CATWEASEL_NUM_HWIFS 3 37#define CATWEASEL_NUM_HWIFS 3
38#define XSURF_NUM_HWIFS 2 38#define XSURF_NUM_HWIFS 2
39 39
40#define MAX_NUM_HWIFS 3
41
40 /* 42 /*
41 * Bases of the IDE interfaces (relative to the board address) 43 * Bases of the IDE interfaces (relative to the board address)
42 */ 44 */
@@ -148,7 +150,6 @@ static void __init buddha_setup_ports(hw_regs_t *hw, unsigned long base,
148 150
149static int __init buddha_init(void) 151static int __init buddha_init(void)
150{ 152{
151 hw_regs_t hw;
152 ide_hwif_t *hwif; 153 ide_hwif_t *hwif;
153 int i; 154 int i;
154 155
@@ -159,6 +160,7 @@ static int __init buddha_init(void)
159 160
160 while ((z = zorro_find_device(ZORRO_WILDCARD, z))) { 161 while ((z = zorro_find_device(ZORRO_WILDCARD, z))) {
161 unsigned long board; 162 unsigned long board;
163 hw_regs_t hw[MAX_NUM_HWIFS], *hws[] = { NULL, NULL, NULL, NULL };
162 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; 164 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
163 165
164 if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_BUDDHA) { 166 if (z->id == ZORRO_PROD_INDIVIDUAL_COMPUTERS_BUDDHA) {
@@ -221,19 +223,19 @@ fail_base2:
221 ack_intr = xsurf_ack_intr; 223 ack_intr = xsurf_ack_intr;
222 } 224 }
223 225
224 buddha_setup_ports(&hw, base, ctl, irq_port, ack_intr); 226 buddha_setup_ports(&hw[i], base, ctl, irq_port,
227 ack_intr);
225 228
226 hwif = ide_find_port(); 229 hwif = ide_find_port();
227 if (hwif) { 230 if (hwif) {
228 u8 index = hwif->index; 231 hwif->chipset = ide_generic;
229
230 ide_init_port_hw(hwif, &hw);
231 232
232 idx[i] = index; 233 hws[i] = &hw[i];
234 idx[i] = hwif->index;
233 } 235 }
234 } 236 }
235 237
236 ide_device_add(idx, NULL); 238 ide_device_add(idx, NULL, hws);
237 } 239 }
238 240
239 return 0; 241 return 0;