diff options
author | phk <phk@FreeBSD.org> | 2000-11-26 19:29:15 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2000-11-26 19:29:15 +0000 |
commit | 2ad308fd87c069be6ea9eb90bfc1b811438fdb46 (patch) | |
tree | 11432f1623f70e03d122945861f3b0dcfb8f452b /sys/isa | |
parent | 0f144020e7e8a3ba9a723306fe3a26e9ea8ee181 (diff) | |
download | FreeBSD-src-2ad308fd87c069be6ea9eb90bfc1b811438fdb46.zip FreeBSD-src-2ad308fd87c069be6ea9eb90bfc1b811438fdb46.tar.gz |
Make diskerr() always log with printf.
Diffstat (limited to 'sys/isa')
-rw-r--r-- | sys/isa/fd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/isa/fd.c b/sys/isa/fd.c index 214aac6..e82bbd5 100644 --- a/sys/isa/fd.c +++ b/sys/isa/fd.c @@ -2224,8 +2224,7 @@ retrier(struct fdc_data *fdc) /* Trick diskerr */ bp->bio_dev = makedev(major(bp->bio_dev), (FDUNIT(minor(bp->bio_dev))<<3)|RAW_PART); - diskerr(bp, "hard error", LOG_PRINTF, - fdc->fd->skip / DEV_BSIZE, + diskerr(bp, "hard error", fdc->fd->skip / DEV_BSIZE, (struct disklabel *)NULL); bp->bio_dev = sav_bio_dev; if (fdc->flags & FDC_STAT_VALID) |