summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>2001-03-04 18:41:23 +0000
committermjacob <mjacob@FreeBSD.org>2001-03-04 18:41:23 +0000
commitc64056892d7126ce7abef27f9cae7d5f6a41be9b (patch)
tree4759c73061f1698c0f16a80adebfa49496e508e7
parent40c80c5e3d73bf85b4ac7840da8800ef982d924e (diff)
downloadFreeBSD-src-c64056892d7126ce7abef27f9cae7d5f6a41be9b.zip
FreeBSD-src-c64056892d7126ce7abef27f9cae7d5f6a41be9b.tar.gz
Remove a superfluous newline in a string (isp_prt adds this).
Fix a missed conversion of 32 to 16 bit handles.
-rw-r--r--sys/dev/isp/isp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c
index 8545ff8..b0b768d 100644
--- a/sys/dev/isp/isp.c
+++ b/sys/dev/isp/isp.c
@@ -3245,7 +3245,7 @@ isp_parse_async(isp, mbox)
case ASYNC_TIMEOUT_RESET:
isp_prt(isp, ISP_LOGWARN,
- "timeout initiated SCSI bus reset of bus %d\n", bus);
+ "timeout initiated SCSI bus reset of bus %d", bus);
isp->isp_sendmarker |= (1 << bus);
#ifdef ISP_TARGET_MODE
isp_target_async(isp, bus, mbox);
@@ -4884,7 +4884,7 @@ isp_reinit(isp)
struct ispsoftc *isp;
{
XS_T *xs;
- u_int32_t handle;
+ u_int16_t handle;
isp_reset(isp);
if (isp->isp_state != ISP_RESETSTATE) {
OpenPOWER on IntegriCloud