summaryrefslogtreecommitdiffstats
path: root/sys/dev/aic7xxx
diff options
context:
space:
mode:
authorgibbs <gibbs@FreeBSD.org>2004-02-04 16:40:08 +0000
committergibbs <gibbs@FreeBSD.org>2004-02-04 16:40:08 +0000
commit8b19fdf746a25aee1b9469aee0f3963907171281 (patch)
tree0fbd4e9c780def072ccd74c8bb51ae5b8633d257 /sys/dev/aic7xxx
parentb82e3d7e9507b73bd18fcf976ee7ca79a7d0e293 (diff)
downloadFreeBSD-src-8b19fdf746a25aee1b9469aee0f3963907171281.zip
FreeBSD-src-8b19fdf746a25aee1b9469aee0f3963907171281.tar.gz
aic7xxx.c:
Shorten a diagnostic printf to fit in 80 columns. In ahc_abort_scbs() remove an incorrect diagnostic test that printed a spurious warning.
Diffstat (limited to 'sys/dev/aic7xxx')
-rw-r--r--sys/dev/aic7xxx/aic7xxx.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/aic7xxx/aic7xxx.c b/sys/dev/aic7xxx/aic7xxx.c
index a43c608..ea837a2 100644
--- a/sys/dev/aic7xxx/aic7xxx.c
+++ b/sys/dev/aic7xxx/aic7xxx.c
@@ -37,7 +37,7 @@
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES.
*
- * $Id: //depot/aic7xxx/aic7xxx/aic7xxx.c#147 $
+ * $Id: //depot/aic7xxx/aic7xxx/aic7xxx.c#148 $
*/
#ifdef __linux__
@@ -5525,7 +5525,7 @@ ahc_search_qinfifo(struct ahc_softc *ahc, int target, char channel,
if (cstat != CAM_REQ_CMP)
aic_freeze_scb(scb);
if ((scb->flags & SCB_ACTIVE) == 0)
- printf("Inactive SCB in Waiting List\n");
+ printf("Inactive SCB in Wait List\n");
ahc_done(ahc, scb);
/* FALLTHROUGH */
}
@@ -5631,8 +5631,6 @@ ahc_search_untagged_queues(struct ahc_softc *ahc, aic_io_ctx_t ctx,
cstat = aic_get_transaction_status(scb);
if (cstat != CAM_REQ_CMP)
aic_freeze_scb(scb);
- if ((scb->flags & SCB_ACTIVE) == 0)
- printf("Inactive SCB in untaggedQ\n");
ahc_done(ahc, scb);
break;
}
OpenPOWER on IntegriCloud