svn commit: r227720 - stable/8/sys/sparc64/sbus

Marius Strobl marius at FreeBSD.org
Sat Nov 19 13:33:25 UTC 2011


Author: marius
Date: Sat Nov 19 13:33:24 2011
New Revision: 227720
URL: http://svn.freebsd.org/changeset/base/227720

Log:
  MFC: r227578
  
  Fix compilation with DEBUG defined.

Modified:
  stable/8/sys/sparc64/sbus/lsi64854.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/sparc64/sbus/lsi64854.c
==============================================================================
--- stable/8/sys/sparc64/sbus/lsi64854.c	Sat Nov 19 13:33:22 2011	(r227719)
+++ stable/8/sys/sparc64/sbus/lsi64854.c	Sat Nov 19 13:33:24 2011	(r227720)
@@ -561,7 +561,7 @@ lsi64854_scsi_intr(void *arg)
 
 	DPRINTF(LDB_SCSI, ("%s: tcl=%d, tcm=%d, tch=%d; trans=%d, resid=%d\n",
 	    __func__, NCR_READ_REG(nsc, NCR_TCL), NCR_READ_REG(nsc, NCR_TCM),
-	    (nsc->sc_sc_features & NCR_F_LARGEXFER) != 0 ?
+	    (nsc->sc_features & NCR_F_LARGEXFER) != 0 ?
 	    NCR_READ_REG(nsc, NCR_TCH) : 0, trans, resid));
 
 	if (dmasize != 0) {


More information about the svn-src-stable-8 mailing list