From 85cd1fc59040e263f3086fda6add4a7d0257771e Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Sun, 25 Jun 1995 17:45:05 +0000 Subject: [PATCH] The BT scsi driver has recently had a message changed - it could be clearer. The "informational message" almost looks like an instruction to the user to change settings on the card.... It's cosmetic, but... Submitted by: peter@haywire.dialix.com --- sys/i386/isa/bt742a.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/i386/isa/bt742a.c b/sys/i386/isa/bt742a.c index f0e78ef27acb..e8d02e79a19f 100644 --- a/sys/i386/isa/bt742a.c +++ b/sys/i386/isa/bt742a.c @@ -12,7 +12,7 @@ * on the understanding that TFS is not responsible for the correct * functioning of this software in any circumstances. * - * $Id: bt742a.c,v 1.36 1995/05/30 08:01:21 rgrimes Exp $ + * $Id: bt742a.c,v 1.37 1995/06/19 13:02:09 amurai Exp $ */ /* @@ -1389,10 +1389,10 @@ bt_inquire_setup_information( * BT_ROUND_ROBIN command amurai@spec.co.jp */ if ( bID.firm_revision >= '3' ) { - printf("bt%d: Use a Strict Round robin scheme\n", unit); + printf("bt%d: Using Strict Round robin scheme\n", unit); bt_cmd(unit, 1, 0, 0, 0, BT_ROUND_ROBIN, BT_STRICT_ROUND_ROBIN); } else { - printf("bt%d: Not Use a Round robin scheme\n", unit); + printf("bt%d: Not using Strict Round robin scheme\n", unit); } }