Commit 3eb2508b authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] fix the rest of the names/ide_ioreg_t in ide legacy

parent 77d0f111
/* /*
* linux/drivers/ide/macide.c -- Macintosh IDE Driver * linux/drivers/ide/legacy/macide.c -- Macintosh IDE Driver
* *
* Copyright (C) 1998 by Michael Schmitz * Copyright (C) 1998 by Michael Schmitz
* *
...@@ -98,21 +98,21 @@ void macide_init(void) ...@@ -98,21 +98,21 @@ void macide_init(void)
switch (macintosh_config->ide_type) { switch (macintosh_config->ide_type) {
case MAC_IDE_QUADRA: case MAC_IDE_QUADRA:
ide_setup_ports(&hw, (ide_ioreg_t)IDE_BASE, macide_offsets, ide_setup_ports(&hw, IDE_BASE, macide_offsets,
0, 0, macide_ack_intr, 0, 0, macide_ack_intr,
// quadra_ide_iops, // quadra_ide_iops,
IRQ_NUBUS_F); IRQ_NUBUS_F);
index = ide_register_hw(&hw, NULL); index = ide_register_hw(&hw, NULL);
break; break;
case MAC_IDE_PB: case MAC_IDE_PB:
ide_setup_ports(&hw, (ide_ioreg_t)IDE_BASE, macide_offsets, ide_setup_ports(&hw, IDE_BASE, macide_offsets,
0, 0, macide_ack_intr, 0, 0, macide_ack_intr,
// macide_pb_iops, // macide_pb_iops,
IRQ_NUBUS_C); IRQ_NUBUS_C);
index = ide_register_hw(&hw, NULL); index = ide_register_hw(&hw, NULL);
break; break;
case MAC_IDE_BABOON: case MAC_IDE_BABOON:
ide_setup_ports(&hw, (ide_ioreg_t)BABOON_BASE, macide_offsets, ide_setup_ports(&hw, BABOON_BASE, macide_offsets,
0, 0, NULL, 0, 0, NULL,
// macide_baboon_iops, // macide_baboon_iops,
IRQ_BABOON_1); IRQ_BABOON_1);
......
/* -*- linux-c -*- /* -*- linux-c -*-
* linux/drivers/ide/pdc4030.c Version 0.90 May 27, 1999 * linux/drivers/ide/legacy/pdc4030.c Version 0.90 May 27, 1999
* *
* Copyright (C) 1995-2002 Linus Torvalds & authors (see below) * Copyright (C) 1995-2002 Linus Torvalds & authors (see below)
*/ */
......
/* /*
* linux/drivers/ide/pdc4030.h * linux/drivers/ide/legacy/pdc4030.h
* *
* Copyright (C) 1995-1998 Linus Torvalds & authors * Copyright (C) 1995-1998 Linus Torvalds & authors
*/ */
......
/* /*
* linux/drivers/ide/q40ide.c -- Q40 I/O port IDE Driver * linux/drivers/ide/legacy/q40ide.c -- Q40 I/O port IDE Driver
* *
* (c) Richard Zidlicky * (c) Richard Zidlicky
* *
...@@ -82,7 +82,7 @@ void q40ide_init(void) ...@@ -82,7 +82,7 @@ void q40ide_init(void)
for (i = 0; i < Q40IDE_NUM_HWIFS; i++) { for (i = 0; i < Q40IDE_NUM_HWIFS; i++) {
hw_regs_t hw; hw_regs_t hw;
ide_setup_ports(&hw,(ide_ioreg_t) pcide_bases[i], (int *)pcide_offsets, ide_setup_ports(&hw,(unsigned long) pcide_bases[i], (int *)pcide_offsets,
pcide_bases[i]+0x206, pcide_bases[i]+0x206,
0, NULL, 0, NULL,
// pcide_iops, // pcide_iops,
......
/* /*
* linux/drivers/ide/qd65xx.c Version 0.07 Sep 30, 2001 * linux/drivers/ide/legacy/qd65xx.c Version 0.07 Sep 30, 2001
* *
* Copyright (C) 1996-2001 Linus Torvalds & author (see below) * Copyright (C) 1996-2001 Linus Torvalds & author (see below)
*/ */
......
/* /*
* linux/drivers/ide/qd65xx.h * linux/drivers/ide/legacy/qd65xx.h
* *
* Copyright (c) 2000 Linus Torvalds & authors * Copyright (c) 2000 Linus Torvalds & authors
*/ */
......
/* /*
* linux/drivers/ide/umc8672.c Version 0.05 Jul 31, 1996 * linux/drivers/ide/legacy/umc8672.c Version 0.05 Jul 31, 1996
* *
* Copyright (C) 1995-1996 Linus Torvalds & author (see below) * Copyright (C) 1995-1996 Linus Torvalds & author (see below)
*/ */
......
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