diff options
Diffstat (limited to 'drivers/ide/au1xxx-ide.c')
-rw-r--r-- | drivers/ide/au1xxx-ide.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/au1xxx-ide.c b/drivers/ide/au1xxx-ide.c index 9b31f830e2f5..32f5be686018 100644 --- a/drivers/ide/au1xxx-ide.c +++ b/drivers/ide/au1xxx-ide.c | |||
@@ -508,7 +508,7 @@ static int au_ide_probe(struct platform_device *dev) | |||
508 | struct resource *res; | 508 | struct resource *res; |
509 | struct ide_host *host; | 509 | struct ide_host *host; |
510 | int ret = 0; | 510 | int ret = 0; |
511 | hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; | 511 | hw_regs_t hw, *hws[] = { &hw }; |
512 | 512 | ||
513 | #if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA) | 513 | #if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA) |
514 | char *mode = "MWDMA2"; | 514 | char *mode = "MWDMA2"; |
@@ -550,7 +550,7 @@ static int au_ide_probe(struct platform_device *dev) | |||
550 | hw.irq = ahwif->irq; | 550 | hw.irq = ahwif->irq; |
551 | hw.dev = &dev->dev; | 551 | hw.dev = &dev->dev; |
552 | 552 | ||
553 | ret = ide_host_add(&au1xxx_port_info, hws, &host); | 553 | ret = ide_host_add(&au1xxx_port_info, hws, 1, &host); |
554 | if (ret) | 554 | if (ret) |
555 | goto out; | 555 | goto out; |
556 | 556 | ||