diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-05-27 21:08:49 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-05-27 21:08:49 +0000 |
commit | ed91ded49608f5f73508c8134d0305176baf4ac2 (patch) | |
tree | 2debf4d5bde6260e26a3a325e1ade364102aeb10 /sys | |
parent | c54bb35d1e40d1107767dede4dc04c5c7c9ef577 (diff) |
Don't print SCSI ID, it's redundant now that scsibus(4) prints the same
information.
ok deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/oosiop.c | 6 | ||||
-rw-r--r-- | sys/dev/ic/osiop.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/ic/oosiop.c b/sys/dev/ic/oosiop.c index 1f95eb0a388..de9a1e9b2ae 100644 --- a/sys/dev/ic/oosiop.c +++ b/sys/dev/ic/oosiop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: oosiop.c,v 1.8 2007/11/07 00:01:02 krw Exp $ */ +/* $OpenBSD: oosiop.c,v 1.9 2008/05/27 21:08:48 kettenis Exp $ */ /* $NetBSD: oosiop.c,v 1.4 2003/10/29 17:45:55 tsutsui Exp $ */ /* @@ -221,10 +221,10 @@ oosiop_attach(struct oosiop_softc *sc) if (sc->sc_minperiod < 25) sc->sc_minperiod = 25; /* limit to 10MB/s */ - printf(": NCR53C700%s rev %d, %dMHz, SCSI ID %d\n", + printf(": NCR53C700%s rev %d, %dMHz\n", sc->sc_chip == OOSIOP_700_66 ? "-66" : "", oosiop_read_1(sc, OOSIOP_CTEST7) >> 4, - sc->sc_freq / 1000000, sc->sc_id); + sc->sc_freq / 1000000); /* * Reset all */ diff --git a/sys/dev/ic/osiop.c b/sys/dev/ic/osiop.c index c0876ff01ce..a5af4c8e1d0 100644 --- a/sys/dev/ic/osiop.c +++ b/sys/dev/ic/osiop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: osiop.c,v 1.32 2008/05/13 02:24:08 brad Exp $ */ +/* $OpenBSD: osiop.c,v 1.33 2008/05/27 21:08:48 kettenis Exp $ */ /* $NetBSD: osiop.c,v 1.9 2002/04/05 18:27:54 bouyer Exp $ */ /* @@ -324,8 +324,8 @@ osiop_attach(sc) TAILQ_INSERT_TAIL(&sc->free_list, acb, chain); } - printf(": NCR53C710 rev %d, %dMHz, SCSI ID %d\n", - osiop_read_1(sc, OSIOP_CTEST8) >> 4, sc->sc_clock_freq, sc->sc_id); + printf(": NCR53C710 rev %d, %dMHz\n", + osiop_read_1(sc, OSIOP_CTEST8) >> 4, sc->sc_clock_freq); /* * Initialize all |