Module Name: src
Committed By: martin
Date: Sat Oct 19 19:47:55 UTC 2013
Modified Files:
src/sys/arch/mac68k/dev: if_mc.c
Log Message:
Remove an unused variable
To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/sys/arch/mac68k/dev/if_mc.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/arch/mac68k/dev/if_mc.c
diff -u src/sys/arch/mac68k/dev/if_mc.c:1.39 src/sys/arch/mac68k/dev/if_mc.c:1.40
--- src/sys/arch/mac68k/dev/if_mc.c:1.39 Sat Oct 27 17:17:59 2012
+++ src/sys/arch/mac68k/dev/if_mc.c Sat Oct 19 19:47:55 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: if_mc.c,v 1.39 2012/10/27 17:17:59 chs Exp $ */
+/* $NetBSD: if_mc.c,v 1.40 2013/10/19 19:47:55 martin Exp $ */
/*-
* Copyright (c) 1997 David Huang <[email protected]>
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_mc.c,v 1.39 2012/10/27 17:17:59 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_mc.c,v 1.40 2013/10/19 19:47:55 martin Exp $");
#include "opt_ddb.h"
#include "opt_inet.h"
@@ -471,9 +471,9 @@ struct mc_softc *sc = arg;
integrate void
mc_tint(struct mc_softc *sc)
{
- u_int8_t xmtrc, xmtfs;
+ u_int8_t /* xmtrc,*/ xmtfs;
- xmtrc = NIC_GET(sc, MACE_XMTRC);
+ /* xmtrc = */ NIC_GET(sc, MACE_XMTRC);
xmtfs = NIC_GET(sc, MACE_XMTFS);
if ((xmtfs & XMTSV) == 0)