diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-05-27 09:43:27 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-05-27 09:43:27 +0000 |
commit | 09629245044a82b9ba79e9314d0a532e6412cff4 (patch) | |
tree | 4eba7c44b5e523e29876f94fecaa19c0eeed3d19 /sys | |
parent | 8bb2a954f869d04440afe7ea60f3f5ae2eb67bc4 (diff) |
Don't print SCSI ID, it's redundant now that scsibus(4) prints the same
information.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/ncr53c9x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/ncr53c9x.c b/sys/dev/ic/ncr53c9x.c index fff03160643..e8aa8b64bbb 100644 --- a/sys/dev/ic/ncr53c9x.c +++ b/sys/dev/ic/ncr53c9x.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr53c9x.c,v 1.36 2007/11/05 22:30:25 krw Exp $ */ +/* $OpenBSD: ncr53c9x.c,v 1.37 2008/05/27 09:43:26 kettenis Exp $ */ /* $NetBSD: ncr53c9x.c,v 1.56 2000/11/30 14:41:46 thorpej Exp $ */ /* @@ -220,8 +220,8 @@ ncr53c9x_attach(sc, adapter, dev) return; } - printf(": %s, %dMHz, SCSI ID %d\n", - ncr53c9x_variant_names[sc->sc_rev], sc->sc_freq, sc->sc_id); + printf(": %s, %dMHz\n", ncr53c9x_variant_names[sc->sc_rev], + sc->sc_freq); sc->sc_ccf = FREQTOCCF(sc->sc_freq); |