diff options
Diffstat (limited to 'drivers/ide/arm/ide_arm.c')
-rw-r--r-- | drivers/ide/arm/ide_arm.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/drivers/ide/arm/ide_arm.c b/drivers/ide/arm/ide_arm.c index e9831bbd988a..9efd7a86db45 100644 --- a/drivers/ide/arm/ide_arm.c +++ b/drivers/ide/arm/ide_arm.c | |||
@@ -28,10 +28,9 @@ | |||
28 | 28 | ||
29 | static int __init ide_arm_init(void) | 29 | static int __init ide_arm_init(void) |
30 | { | 30 | { |
31 | ide_hwif_t *hwif; | 31 | struct ide_host *host; |
32 | unsigned long base = IDE_ARM_IO, ctl = IDE_ARM_IO + 0x206; | 32 | unsigned long base = IDE_ARM_IO, ctl = IDE_ARM_IO + 0x206; |
33 | hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; | 33 | hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; |
34 | u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; | ||
35 | 34 | ||
36 | if (!request_region(base, 8, DRV_NAME)) { | 35 | if (!request_region(base, 8, DRV_NAME)) { |
37 | printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n", | 36 | printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n", |
@@ -51,12 +50,9 @@ static int __init ide_arm_init(void) | |||
51 | hw.irq = IDE_ARM_IRQ; | 50 | hw.irq = IDE_ARM_IRQ; |
52 | hw.chipset = ide_generic; | 51 | hw.chipset = ide_generic; |
53 | 52 | ||
54 | hwif = ide_find_port(); | 53 | host = ide_host_alloc(NULL, hws); |
55 | if (hwif) { | 54 | if (host) |
56 | idx[0] = hwif->index; | 55 | ide_host_register(host, NULL, hws); |
57 | |||
58 | ide_device_add(idx, NULL, hws); | ||
59 | } | ||
60 | 56 | ||
61 | return 0; | 57 | return 0; |
62 | } | 58 | } |