Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Aug 2006 15:57:08 GMT
From:      Paolo Pisati <piso@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 105181 for review
Message-ID:  <200608271557.k7RFv8o8055434@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=105181

Change 105181 by piso@piso_newluxor on 2006/08/27 15:57:05

	Compilation.

Affected files ...

.. //depot/projects/soc2006/intr_filter/powerpc/powerpc/intr_machdep.c#10 edit

Differences ...

==== //depot/projects/soc2006/intr_filter/powerpc/powerpc/intr_machdep.c#10 (text+ko) ====

@@ -67,6 +67,7 @@
 #include <sys/bus.h>
 #include <sys/interrupt.h>
 #include <sys/ktr.h>
+#include <sys/limits.h>
 #include <sys/lock.h>
 #include <sys/malloc.h>
 #include <sys/mutex.h>
@@ -231,7 +232,7 @@
 
 	for (; i<intr_nirq; ) {
 		int j = i++;
-		ppc = intr_handlers[j];
+		ppc = &intr_handlers[j];
 		if (ppc != NULL && ppc->ih_event != NULL)
 			return (ppc->ih_event);
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200608271557.k7RFv8o8055434>