macide: use struct ide_port_info

This fixes hwif->channel and drive->dn assignments.

Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent 0e78a54f
...@@ -80,6 +80,10 @@ static void __init macide_setup_ports(hw_regs_t *hw, unsigned long base, ...@@ -80,6 +80,10 @@ static void __init macide_setup_ports(hw_regs_t *hw, unsigned long base,
hw->chipset = ide_generic; hw->chipset = ide_generic;
} }
static const struct ide_port_info macide_port_info = {
.host_flags = IDE_HFLAG_NO_DMA,
};
static const char *mac_ide_name[] = static const char *mac_ide_name[] =
{ "Quadra", "Powerbook", "Powerbook Baboon" }; { "Quadra", "Powerbook", "Powerbook Baboon" };
...@@ -122,7 +126,7 @@ static int __init macide_init(void) ...@@ -122,7 +126,7 @@ static int __init macide_init(void)
macide_setup_ports(&hw, base, irq, ack_intr); macide_setup_ports(&hw, base, irq, ack_intr);
return ide_host_add(NULL, hws, NULL); return ide_host_add(&macide_port_info, hws, NULL);
} }
module_init(macide_init); module_init(macide_init);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment