Module Name:    src
Committed By:   martin
Date:           Thu Sep 12 19:54:51 UTC 2013

Modified Files:
        src/sys/dev/sbus: esp_sbus.c

Log Message:
Remove unused variable


To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 src/sys/dev/sbus/esp_sbus.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/sbus/esp_sbus.c
diff -u src/sys/dev/sbus/esp_sbus.c:1.51 src/sys/dev/sbus/esp_sbus.c:1.52
--- src/sys/dev/sbus/esp_sbus.c:1.51	Thu Sep 17 16:28:12 2009
+++ src/sys/dev/sbus/esp_sbus.c	Thu Sep 12 19:54:51 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: esp_sbus.c,v 1.51 2009/09/17 16:28:12 tsutsui Exp $	*/
+/*	$NetBSD: esp_sbus.c,v 1.52 2013/09/12 19:54:51 martin Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: esp_sbus.c,v 1.51 2009/09/17 16:28:12 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: esp_sbus.c,v 1.52 2013/09/12 19:54:51 martin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -408,7 +408,6 @@ void
 espattach(struct esp_softc *esc, struct ncr53c9x_glue *gluep)
 {
 	struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
-	void *icookie;
 	unsigned int uid = 0;
 
 	/*
@@ -512,7 +511,7 @@ espattach(struct esp_softc *esc, struct 
 	}
 
 	/* Establish interrupt channel */
-	icookie = bus_intr_establish(esc->sc_bustag, esc->sc_pri, IPL_BIO,
+	bus_intr_establish(esc->sc_bustag, esc->sc_pri, IPL_BIO,
 	    ncr53c9x_intr, sc);
 
 	/* register interrupt stats */

Reply via email to