diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-17 18:46:35 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-17 18:46:35 -0400 |
commit | dfd87842a97e848cb5d62a5249d3f479c5f92c4b (patch) | |
tree | bb02496c9cd49a7b864642ee9d0186be0c1f85b6 /drivers/ide/legacy/dtc2278.c | |
parent | e4079df0c273719f539aaa7cc19ed17c9a5b0aba (diff) |
ide: init hwif->{io_ports,irq} explicitly in legacy VLB host drivers
Do explicit port setup in legacy VLB host drivers instead of depending
on init_ide_data(). This way hwif->io_ports[] and hwif->irq are always
correctly set regardless of CONFIG_PCI / CONFIG_BLK_DEV_IDEPCI.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/legacy/dtc2278.c')
-rw-r--r-- | drivers/ide/legacy/dtc2278.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/ide/legacy/dtc2278.c b/drivers/ide/legacy/dtc2278.c index 73396f70f2b7..5f69cd2ea6f7 100644 --- a/drivers/ide/legacy/dtc2278.c +++ b/drivers/ide/legacy/dtc2278.c | |||
@@ -103,6 +103,7 @@ static int __init dtc2278_probe(void) | |||
103 | unsigned long flags; | 103 | unsigned long flags; |
104 | ide_hwif_t *hwif, *mate; | 104 | ide_hwif_t *hwif, *mate; |
105 | static u8 idx[4] = { 0, 1, 0xff, 0xff }; | 105 | static u8 idx[4] = { 0, 1, 0xff, 0xff }; |
106 | hw_regs_t hw[2]; | ||
106 | 107 | ||
107 | hwif = &ide_hwifs[0]; | 108 | hwif = &ide_hwifs[0]; |
108 | mate = &ide_hwifs[1]; | 109 | mate = &ide_hwifs[1]; |
@@ -128,6 +129,17 @@ static int __init dtc2278_probe(void) | |||
128 | #endif | 129 | #endif |
129 | local_irq_restore(flags); | 130 | local_irq_restore(flags); |
130 | 131 | ||
132 | memset(&hw, 0, sizeof(hw)); | ||
133 | |||
134 | ide_std_init_ports(&hw[0], 0x1f0, 0x3f6); | ||
135 | hw[0].irq = 14; | ||
136 | |||
137 | ide_std_init_ports(&hw[1], 0x170, 0x376); | ||
138 | hw[1].irq = 15; | ||
139 | |||
140 | ide_init_port_hw(hwif, &hw[0]); | ||
141 | ide_init_port_hw(mate, &hw[1]); | ||
142 | |||
131 | hwif->set_pio_mode = &dtc2278_set_pio_mode; | 143 | hwif->set_pio_mode = &dtc2278_set_pio_mode; |
132 | 144 | ||
133 | ide_device_add(idx, &dtc2278_port_info); | 145 | ide_device_add(idx, &dtc2278_port_info); |