PERFORCE change 107122 for review

Warner Losh imp at FreeBSD.org
Mon Oct 2 14:04:44 PDT 2006


http://perforce.freebsd.org/chv.cgi?CH=107122

Change 107122 by imp at imp_lighthouse on 2006/10/02 21:03:43

	Fix botched done call.

Affected files ...

.. //depot/projects/arm/src/sys/arm/at91/at91_mci.c#15 edit

Differences ...

==== //depot/projects/arm/src/sys/arm/at91/at91_mci.c#15 (text+ko) ====

@@ -348,7 +348,7 @@
 		WR4(sc, MCI_IER, MCI_SR_ERROR | MCI_SR_CMDRDY);
 		return;
 	}
-//	panic();
+	panic("WRITE THE DATA HANDLER");
 }
 
 static void
@@ -371,7 +371,7 @@
 	/* We must be done -- bad idea to do this while locked? */
 	sc->req = NULL;
 	sc->curcmd = NULL;
-	req->done(req->done_data);
+	req->done(req);
 }
 
 static int


More information about the p4-projects mailing list