Skip to content

Commit

Permalink
ide: Add missing base addresses for falconide and macide
Browse files Browse the repository at this point in the history
commit 29dd597 ("ide: remove ide_setup_ports")
forgot to take into account the base addresses for the CONTROL registers for
falconide and macide, as pointed out by Michael Schmitz.

Falconide was tested on Aranym.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Michael Schmitz <schmitz@debian.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
  • Loading branch information
Geert Uytterhoeven authored and Bartlomiej Zolnierkiewicz committed Feb 19, 2008
1 parent f702c58 commit 899e1bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/ide/legacy/falconide.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ static void __init falconide_setup_ports(hw_regs_t *hw)
for (i = 1; i < 8; i++)
hw->io_ports[i] = ATA_HD_BASE + 1 + i * 4;

hw->io_ports[IDE_CONTROL_OFFSET] = ATA_HD_CONTROL;
hw->io_ports[IDE_CONTROL_OFFSET] = ATA_HD_BASE + ATA_HD_CONTROL;

hw->irq = IRQ_MFP_IDE;
hw->ack_intr = NULL;
Expand Down
2 changes: 1 addition & 1 deletion drivers/ide/legacy/macide.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static void __init macide_setup_ports(hw_regs_t *hw, unsigned long base,
for (i = 0; i < 8; i++)
hw->io_ports[i] = base + i * 4;

hw->io_ports[IDE_CONTROL_OFFSET] = IDE_CONTROL;
hw->io_ports[IDE_CONTROL_OFFSET] = base + IDE_CONTROL;

hw->irq = irq;
hw->ack_intr = ack_intr;
Expand Down

0 comments on commit 899e1bc

Please sign in to comment.