diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-16 14:33:42 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-16 14:33:42 -0400 |
commit | 9a5ae1faaaf43933dee48c223b193d5e1c4b8b0c (patch) | |
tree | 9ffc32d54566473ad8d01ed0b89fdd7b5b6d93a9 /drivers/ide | |
parent | b48c89a9699f451e4e236fa7313461281c00e69b (diff) |
rapide: use struct ide_port_info
Convert the driver to use struct ide_port_info.
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/arm/rapide.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/ide/arm/rapide.c b/drivers/ide/arm/rapide.c index 1747b2358775..bb081ad53f31 100644 --- a/drivers/ide/arm/rapide.c +++ b/drivers/ide/arm/rapide.c | |||
@@ -11,6 +11,10 @@ | |||
11 | 11 | ||
12 | #include <asm/ecard.h> | 12 | #include <asm/ecard.h> |
13 | 13 | ||
14 | static struct const ide_port_info rapide_port_info = { | ||
15 | .host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA, | ||
16 | }; | ||
17 | |||
14 | static void rapide_setup_ports(hw_regs_t *hw, void __iomem *base, | 18 | static void rapide_setup_ports(hw_regs_t *hw, void __iomem *base, |
15 | void __iomem *ctrl, unsigned int sz, int irq) | 19 | void __iomem *ctrl, unsigned int sz, int irq) |
16 | { | 20 | { |
@@ -53,12 +57,11 @@ rapide_probe(struct expansion_card *ec, const struct ecard_id *id) | |||
53 | 57 | ||
54 | ide_init_port_hw(hwif, &hw); | 58 | ide_init_port_hw(hwif, &hw); |
55 | 59 | ||
56 | hwif->host_flags = IDE_HFLAG_MMIO; | ||
57 | default_hwif_mmiops(hwif); | 60 | default_hwif_mmiops(hwif); |
58 | 61 | ||
59 | idx[0] = hwif->index; | 62 | idx[0] = hwif->index; |
60 | 63 | ||
61 | ide_device_add(idx, NULL); | 64 | ide_device_add(idx, &rapide_port_info); |
62 | 65 | ||
63 | ecard_set_drvdata(ec, hwif); | 66 | ecard_set_drvdata(ec, hwif); |
64 | goto out; | 67 | goto out; |