diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:17 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:17 -0400 |
commit | 9804657ec488380637226d08c808b29ede566908 (patch) | |
tree | d4dff80871226bc21a65b3678b41e0f96e1e953f /drivers/ide/ide_arm.c | |
parent | 33050ec7a2b83bc048b2322c79af25df6fdcb879 (diff) |
ide_arm: use struct ide_port_info
This fixes hwif->channel and drive->dn assignments.
Cc: Russell King <rmk@arm.linux.org.uk>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide_arm.c')
-rw-r--r-- | drivers/ide/ide_arm.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/ide/ide_arm.c b/drivers/ide/ide_arm.c index bdcac94d7c1f..cf6385446ece 100644 --- a/drivers/ide/ide_arm.c +++ b/drivers/ide/ide_arm.c | |||
@@ -18,6 +18,10 @@ | |||
18 | #define IDE_ARM_IO 0x1f0 | 18 | #define IDE_ARM_IO 0x1f0 |
19 | #define IDE_ARM_IRQ IRQ_HARDDISK | 19 | #define IDE_ARM_IRQ IRQ_HARDDISK |
20 | 20 | ||
21 | static const struct ide_port_info ide_arm_port_info = { | ||
22 | .host_flags = IDE_HFLAG_NO_DMA, | ||
23 | }; | ||
24 | |||
21 | static int __init ide_arm_init(void) | 25 | static int __init ide_arm_init(void) |
22 | { | 26 | { |
23 | unsigned long base = IDE_ARM_IO, ctl = IDE_ARM_IO + 0x206; | 27 | unsigned long base = IDE_ARM_IO, ctl = IDE_ARM_IO + 0x206; |
@@ -41,7 +45,7 @@ static int __init ide_arm_init(void) | |||
41 | hw.irq = IDE_ARM_IRQ; | 45 | hw.irq = IDE_ARM_IRQ; |
42 | hw.chipset = ide_generic; | 46 | hw.chipset = ide_generic; |
43 | 47 | ||
44 | return ide_host_add(NULL, hws, NULL); | 48 | return ide_host_add(&ide_arm_port_info, hws, NULL); |
45 | } | 49 | } |
46 | 50 | ||
47 | module_init(ide_arm_init); | 51 | module_init(ide_arm_init); |