summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsos <sos@FreeBSD.org>2004-06-15 11:38:48 +0000
committersos <sos@FreeBSD.org>2004-06-15 11:38:48 +0000
commitca830264a9e9ca3cf7807b34bdf1a56559223c67 (patch)
tree78b60de0510e160b242fe0313dbe14cf95ddcb92
parent3ebcca508cb3f7efd98d4673c29652a6de781804 (diff)
downloadFreeBSD-src-ca830264a9e9ca3cf7807b34bdf1a56559223c67.zip
FreeBSD-src-ca830264a9e9ca3cf7807b34bdf1a56559223c67.tar.gz
Oops, backout debug code..
-rw-r--r--sys/dev/ata/ata-all.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/dev/ata/ata-all.c b/sys/dev/ata/ata-all.c
index 6b764ec..9a31973 100644
--- a/sys/dev/ata/ata-all.c
+++ b/sys/dev/ata/ata-all.c
@@ -315,10 +315,8 @@ ata_suspend(device_t dev)
if (!dev || !(ch = device_get_softc(dev)))
return ENXIO;
- device_printf(dev, "suspend\n");
ch->locking(ch, ATA_LF_LOCK);
ATA_SLEEPLOCK_CH(ch);
- device_printf(dev, "suspend done\n");
return 0;
}
@@ -331,12 +329,10 @@ ata_resume(device_t dev)
if (!dev || !(ch = device_get_softc(dev)))
return ENXIO;
- device_printf(dev, "resume\n");
ch->locking(ch, ATA_LF_LOCK);
error = ata_reinit(ch);
ch->locking(ch, ATA_LF_UNLOCK);
ata_start(ch);
- device_printf(dev, "resume done\n");
return error;
}
OpenPOWER on IntegriCloud