diff options
Diffstat (limited to 'drivers/ide/legacy/umc8672.c')
-rw-r--r-- | drivers/ide/legacy/umc8672.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/ide/legacy/umc8672.c b/drivers/ide/legacy/umc8672.c index 5696ba026005..bc1944811b99 100644 --- a/drivers/ide/legacy/umc8672.c +++ b/drivers/ide/legacy/umc8672.c | |||
@@ -130,6 +130,7 @@ static int __init umc8672_probe(void) | |||
130 | { | 130 | { |
131 | unsigned long flags; | 131 | unsigned long flags; |
132 | static u8 idx[4] = { 0, 1, 0xff, 0xff }; | 132 | static u8 idx[4] = { 0, 1, 0xff, 0xff }; |
133 | hw_regs_t hw[2]; | ||
133 | 134 | ||
134 | if (!request_region(0x108, 2, "umc8672")) { | 135 | if (!request_region(0x108, 2, "umc8672")) { |
135 | printk(KERN_ERR "umc8672: ports 0x108-0x109 already in use.\n"); | 136 | printk(KERN_ERR "umc8672: ports 0x108-0x109 already in use.\n"); |
@@ -148,6 +149,17 @@ static int __init umc8672_probe(void) | |||
148 | umc_set_speeds (current_speeds); | 149 | umc_set_speeds (current_speeds); |
149 | local_irq_restore(flags); | 150 | local_irq_restore(flags); |
150 | 151 | ||
152 | memset(&hw, 0, sizeof(hw)); | ||
153 | |||
154 | ide_std_init_ports(&hw[0], 0x1f0, 0x3f6); | ||
155 | hw[0].irq = 14; | ||
156 | |||
157 | ide_std_init_ports(&hw[1], 0x170, 0x376); | ||
158 | hw[1].irq = 15; | ||
159 | |||
160 | ide_init_port_hw(&ide_hwifs[0], &hw[0]); | ||
161 | ide_init_port_hw(&ide_hwifs[1], &hw[1]); | ||
162 | |||
151 | ide_hwifs[0].set_pio_mode = &umc_set_pio_mode; | 163 | ide_hwifs[0].set_pio_mode = &umc_set_pio_mode; |
152 | ide_hwifs[1].set_pio_mode = &umc_set_pio_mode; | 164 | ide_hwifs[1].set_pio_mode = &umc_set_pio_mode; |
153 | 165 | ||