diff options
author | Vegard Nossum <vegard.nossum@gmail.com> | 2009-04-08 18:19:39 +0200 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2009-04-13 04:22:04 -0400 |
commit | f6005354d6d45afeafeca90661911d777c81f1e2 (patch) | |
tree | fdedd613db71cf7021a5f17f3a1b22a010276d3f | |
parent | aa431dd39d560586db22209b7f78c33455e1a786 (diff) |
ata: fix obviously wrong comment
Also remove the now-useless debug printouts which are supposed to
tell us when the scan starts and ends.
Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
-rw-r--r-- | drivers/ata/libata-core.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index e7ea77cf6069..065507c46644 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c @@ -6110,13 +6110,11 @@ int ata_host_register(struct ata_host *host, struct scsi_host_template *sht) ata_port_printk(ap, KERN_INFO, "DUMMY\n"); } - /* perform each probe synchronously */ - DPRINTK("probe begin\n"); + /* perform each probe asynchronously */ for (i = 0; i < host->n_ports; i++) { struct ata_port *ap = host->ports[i]; async_schedule(async_port_probe, ap); } - DPRINTK("probe end\n"); return 0; } |