Skip to content

Commit

Permalink
macide: use struct ide_port_info
Browse files Browse the repository at this point in the history
This fixes hwif->channel and drive->dn assignments.

Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
  • Loading branch information
Bartlomiej Zolnierkiewicz committed Mar 27, 2009
1 parent 0e78a54 commit 211176c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion drivers/ide/macide.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ static void __init macide_setup_ports(hw_regs_t *hw, unsigned long base,
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[] =
{ "Quadra", "Powerbook", "Powerbook Baboon" };

Expand Down Expand Up @@ -122,7 +126,7 @@ static int __init macide_init(void)

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);
Expand Down

0 comments on commit 211176c

Please sign in to comment.