diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2004-05-09 05:34:01 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2004-05-09 05:34:01 +0000 |
commit | 23d32038c454aebfcf199160132412aaa53a7d26 (patch) | |
tree | 18aedeec8003e279fc0238ddd741e9112f69164c /sys/arch | |
parent | 641fdb00a006aacea6967546d45f479fe607883f (diff) |
Eliminate verbosity parameter to scsi_print_sense and the associated
chunk of code. It was never executed unless you were debugging a
mvmex8k 'vs' device.
ok miod@ (mvmex8k bits) marco@ deraadt@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mvme68k/dev/vs.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/dev/vs.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvme68k/dev/vs.c b/sys/arch/mvme68k/dev/vs.c index bfa6f6a01c0..d3d31f4fc59 100644 --- a/sys/arch/mvme68k/dev/vs.c +++ b/sys/arch/mvme68k/dev/vs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vs.c,v 1.14 2004/01/20 16:48:23 miod Exp $ */ +/* $OpenBSD: vs.c,v 1.15 2004/05/09 05:34:00 krw Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. @@ -443,7 +443,7 @@ vs_chksense(xs) */ xs->status = riopb->iopb_STATUS >> 8; #ifdef SDEBUG - scsi_print_sense(xs, 2); + scsi_print_sense(xs); #endif splx(s); } diff --git a/sys/arch/mvme88k/dev/vs.c b/sys/arch/mvme88k/dev/vs.c index 5b1248f3293..cc4f9a9c6aa 100644 --- a/sys/arch/mvme88k/dev/vs.c +++ b/sys/arch/mvme88k/dev/vs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vs.c,v 1.33 2004/04/30 19:08:02 miod Exp $ */ +/* $OpenBSD: vs.c,v 1.34 2004/05/09 05:34:00 krw Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. @@ -494,7 +494,7 @@ vs_chksense(xs) */ xs->status = riopb->iopb_STATUS >> 8; #ifdef SDEBUG - scsi_print_sense(xs, 2); + scsi_print_sense(xs); #endif splx(s); } |