diff options
author | 2008-05-27 09:43:26 +0000 | |
---|---|---|
committer | 2008-05-27 09:43:26 +0000 | |
commit | 499ce6dc2f03bc08410169472c4ab783e8ea035c (patch) | |
tree | 057e6fa875e54b5c1b8287c55fd7a1022623f2b5 | |
parent | Fix count of states flushed, broken when the psnk_af hack was removed in pf_ioctl.c r1.196. (diff) | |
download | wireguard-openbsd-499ce6dc2f03bc08410169472c4ab783e8ea035c.tar.xz wireguard-openbsd-499ce6dc2f03bc08410169472c4ab783e8ea035c.zip |
Don't print SCSI ID, it's redundant now that scsibus(4) prints the same
information.
-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); |