We may or may not disable a device after ata_dev_configure() fails. Kill 'not supported, ignoring' message in ata_dev_configure() and use ata_dev_disable() in ata_bus_probe(). Signed-off-by: Tejun Heo <htejun@xxxxxxxxx> --- drivers/scsi/libata-core.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) 54e2f80b5190b3f94779c06cbfe722b4bfe9204a diff --git a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c index 92c7c53..b7595bf 100644 --- a/drivers/scsi/libata-core.c +++ b/drivers/scsi/libata-core.c @@ -1373,8 +1373,6 @@ static int ata_dev_configure(struct ata_ return 0; err_out_nosup: - printk(KERN_WARNING "ata%u: dev %u not supported, ignoring\n", - ap->id, dev->devno); DPRINTK("EXIT, err\n"); return rc; } @@ -1443,7 +1441,7 @@ static int ata_bus_probe(struct ata_port } if (ata_dev_configure(ap, dev, 1)) { - dev->class++; /* disable device */ + ata_dev_disable(ap, dev); continue; } -- 1.2.4 - : send the line "unsubscribe linux-ide" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html