diff options
Diffstat (limited to 'drivers/ide/legacy/ide-cs.c')
| -rw-r--r-- | drivers/ide/legacy/ide-cs.c | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/drivers/ide/legacy/ide-cs.c b/drivers/ide/legacy/ide-cs.c index 3bd29676ef6a..15ccf6944ae2 100644 --- a/drivers/ide/legacy/ide-cs.c +++ b/drivers/ide/legacy/ide-cs.c | |||
| @@ -145,13 +145,36 @@ static void ide_detach(struct pcmcia_device *link) | |||
| 145 | 145 | ||
| 146 | static int idecs_register(unsigned long io, unsigned long ctl, unsigned long irq, struct pcmcia_device *handle) | 146 | static int idecs_register(unsigned long io, unsigned long ctl, unsigned long irq, struct pcmcia_device *handle) |
| 147 | { | 147 | { |
| 148 | ide_hwif_t *hwif; | ||
| 148 | hw_regs_t hw; | 149 | hw_regs_t hw; |
| 150 | int i; | ||
| 151 | u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; | ||
| 152 | |||
| 149 | memset(&hw, 0, sizeof(hw)); | 153 | memset(&hw, 0, sizeof(hw)); |
| 150 | ide_init_hwif_ports(&hw, io, ctl, NULL); | 154 | ide_std_init_ports(&hw, io, ctl); |
| 151 | hw.irq = irq; | 155 | hw.irq = irq; |
| 152 | hw.chipset = ide_pci; | 156 | hw.chipset = ide_pci; |
| 153 | hw.dev = &handle->dev; | 157 | hw.dev = &handle->dev; |
| 154 | return ide_register_hw(&hw, &ide_undecoded_slave, NULL); | 158 | |
| 159 | hwif = ide_deprecated_find_port(hw.io_ports[IDE_DATA_OFFSET]); | ||
| 160 | if (hwif == NULL) | ||
| 161 | return -1; | ||
| 162 | |||
| 163 | i = hwif->index; | ||
| 164 | |||
| 165 | if (hwif->present) | ||
| 166 | ide_unregister(i, 0, 0); | ||
| 167 | else if (!hwif->hold) | ||
| 168 | ide_init_port_data(hwif, i); | ||
| 169 | |||
| 170 | ide_init_port_hw(hwif, &hw); | ||
| 171 | hwif->quirkproc = &ide_undecoded_slave; | ||
| 172 | |||
| 173 | idx[0] = i; | ||
| 174 | |||
| 175 | ide_device_add(idx, NULL); | ||
| 176 | |||
| 177 | return hwif->present ? i : -1; | ||
| 155 | } | 178 | } |
| 156 | 179 | ||
| 157 | /*====================================================================== | 180 | /*====================================================================== |
| @@ -337,7 +360,7 @@ void ide_release(struct pcmcia_device *link) | |||
| 337 | if (info->ndev) { | 360 | if (info->ndev) { |
| 338 | /* FIXME: if this fails we need to queue the cleanup somehow | 361 | /* FIXME: if this fails we need to queue the cleanup somehow |
| 339 | -- need to investigate the required PCMCIA magic */ | 362 | -- need to investigate the required PCMCIA magic */ |
| 340 | ide_unregister(info->hd); | 363 | ide_unregister(info->hd, 0, 0); |
| 341 | } | 364 | } |
| 342 | info->ndev = 0; | 365 | info->ndev = 0; |
| 343 | 366 | ||
