ide: print message on error in ide_find_port_slot()
[firefly-linux-kernel-4.4.55.git] / drivers / ide / mips / swarm.c
index 57a0138d0db6af20d7690066a23b452fd9086480..bae92acea3433f73a7ffefe9d8cd2ea5efdd1ffc 100644 (file)
@@ -62,6 +62,7 @@ static struct resource swarm_ide_resource = {
 static struct platform_device *swarm_ide_dev;
 
 static const struct ide_port_info swarm_port_info = {
+       .name                   = DRV_NAME,
        .host_flags             = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA,
 };
 
@@ -81,11 +82,9 @@ static int __devinit swarm_ide_probe(struct device *dev)
        if (!SIBYTE_HAVE_IDE)
                return -ENODEV;
 
-       hwif = ide_find_port();
-       if (hwif == NULL) {
-               printk(KERN_ERR DRV_NAME ": no free slot for interface\n");
+       hwif = ide_find_port_slot(&swarm_port_info);
+       if (hwif == NULL)
                return -ENOMEM;
-       }
 
        base = ioremap(A_IO_EXT_BASE, 0x800);
        offset = __raw_readq(base + R_IO_EXT_REG(R_IO_EXT_START_ADDR, IDE_CS));