> I turned on the debug flags, there were a bunch of odd messages
> in there, but otherwise it seems to be working fine. My .config
> has the following AIC config options:
<sigh>
I always run with debugging turned on with the message flags enabled,
so I missed this in my testing. I just updated the tarfile. The
following patch is all you need to shut the driver up.
-- Justin--==========3294902874========== Content-Type: text/plain; charset=us-ascii; name=diff Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=diff; size=1375
Change 1419 by gibbs@bitkeeper-linux-2.5 on 2002/09/27 16:44:04
Add a missing pair of curly braces to a conditional debug statement. This ensures that debug code doesn't trigger if it isn't enabled. <blush>
Affected files ...
... //depot/aic7xxx/aic7xxx/aic7xxx.c#80 edit
Differences ...
==== //depot/aic7xxx/aic7xxx/aic7xxx.c#80 (ktext) ====
*************** *** 37,43 **** * 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#79 $ * * $FreeBSD$ */ --- 37,43 ---- * 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#80 $ * * $FreeBSD$ */ *************** *** 2475,2483 **** panic("HOST_MSG_LOOP interrupt with no active message"); #ifdef AHC_DEBUG ! if ((ahc_debug & AHC_SHOW_MESSAGES) != 0) ahc_print_devinfo(ahc, &devinfo); printf("INITIATOR_MSG_OUT"); #endif phasemis = bus_phase != P_MESGOUT; if (phasemis) { --- 2475,2484 ---- panic("HOST_MSG_LOOP interrupt with no active message"); #ifdef AHC_DEBUG ! if ((ahc_debug & AHC_SHOW_MESSAGES) != 0) { ahc_print_devinfo(ahc, &devinfo); printf("INITIATOR_MSG_OUT"); + } #endif phasemis = bus_phase != P_MESGOUT; if (phasemis) {
--==========3294902874==========--
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/