aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/mips/au1xxx-ide.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/mips/au1xxx-ide.c')
-rw-r--r--drivers/ide/mips/au1xxx-ide.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/ide/mips/au1xxx-ide.c b/drivers/ide/mips/au1xxx-ide.c
index 903c628bddd0..11b7f61aae40 100644
--- a/drivers/ide/mips/au1xxx-ide.c
+++ b/drivers/ide/mips/au1xxx-ide.c
@@ -609,13 +609,9 @@ static int au_ide_probe(struct device *dev)
609 hw.dev = dev; 609 hw.dev = dev;
610 hw.chipset = ide_au1xxx; 610 hw.chipset = ide_au1xxx;
611 611
612 host = ide_host_alloc(&au1xxx_port_info, hws); 612 ret = ide_host_add(&au1xxx_port_info, hws, &host);
613 if (host == NULL) { 613 if (ret)
614 ret = -ENOENT;
615 goto out; 614 goto out;
616 }
617
618 ide_host_register(host, &au1xxx_port_info, hws);
619 615
620 auide_hwif.hwif = host->ports[0]; 616 auide_hwif.hwif = host->ports[0];
621 617