diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-24 04:05:07 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-03-24 04:05:07 +0000 |
commit | c6ef8e47d9cab547a6ac7d16db3c92e62ee2d6b9 (patch) | |
tree | f0d368b1892eaf8f3e493c366bfc3186804a7d96 /sys/dev/ic/isp.c | |
parent | f2f993b87e91e3a2afc28574898f794c7ea28213 (diff) |
nicer output
Diffstat (limited to 'sys/dev/ic/isp.c')
-rw-r--r-- | sys/dev/ic/isp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/ic/isp.c b/sys/dev/ic/isp.c index a203446e316..7c72193260c 100644 --- a/sys/dev/ic/isp.c +++ b/sys/dev/ic/isp.c @@ -118,8 +118,7 @@ isp_reset(isp) (void) isp_mboxcmd(isp, &mbs); if (mbs.param[0] == MBOX_COMMAND_COMPLETE) { clock = mbs.param[1]; - printf("using board clock 0x%x ", - isp->isp_name, clock); + printf("board-clock 0x%x ", clock); } else { clock = 0; } @@ -290,7 +289,7 @@ isp_reset(isp) printf("ABOUT FIRMWARE command failed\n"); return; } - printf("F/W Revision %d.%d\n", mbs.param[1], mbs.param[2]); + printf("F/W rev %d.%d ", mbs.param[1], mbs.param[2]); isp->isp_state = ISP_RESETSTATE; } |