Module Name:    src
Committed By:   khorben
Date:           Mon May  6 23:09:34 UTC 2013

Modified Files:
        src/sys/dev/marvell: mvspi.c

Log Message:
Removed an unused variable.

"go ahead" rkujawa@


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/marvell/mvspi.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/marvell/mvspi.c
diff -u src/sys/dev/marvell/mvspi.c:1.1 src/sys/dev/marvell/mvspi.c:1.2
--- src/sys/dev/marvell/mvspi.c:1.1	Wed May  1 12:17:17 2013
+++ src/sys/dev/marvell/mvspi.c	Mon May  6 23:09:34 2013
@@ -249,9 +249,7 @@ int
 mvspi_transfer(void *cookie, struct spi_transfer *st)
 {
 	struct mvspi_softc *sc = cookie;
-	int s, er;
-
-	er = 0;
+	int s;
 
 	s = splbio();
 	spi_transq_enqueue(&sc->sc_transq, st);

Reply via email to