diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-02-21 10:01:28 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-02-21 10:01:28 +0000 |
commit | d7e6510078a57e5a2ac210d863e76957cde307c7 (patch) | |
tree | 1be7ca2a0caab990f978f2ecdac413b682dd6a40 | |
parent | e55fdd4e9fe43113ed2070e4e565409719941c3d (diff) |
remove unused variable
ok mickey@
-rw-r--r-- | sys/dev/pci/neo.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/neo.c b/sys/dev/pci/neo.c index 85958392c85..e6e4d0ec775 100644 --- a/sys/dev/pci/neo.c +++ b/sys/dev/pci/neo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: neo.c,v 1.13 2002/10/04 20:05:12 mickey Exp $ */ +/* $OpenBSD: neo.c,v 1.14 2003/02/21 10:01:27 tedu Exp $ */ /* * Copyright (c) 1999 Cameron Grant <gandalf@vilnya.demon.co.uk> @@ -424,10 +424,9 @@ int neo_intr(void *p) { struct neo_softc *sc = (struct neo_softc *)p; - int status, x, active; + int status, x; int rv = 0; - active = (sc->pintr || sc->rintr); status = nm_rd(sc, NM_INT_REG, sc->irsz); if (status & sc->playint) { |