svn commit: r197369 - stable/6/sys/dev/gem

Marius Strobl marius at FreeBSD.org
Sun Sep 20 19:26:05 UTC 2009


Author: marius
Date: Sun Sep 20 19:26:04 2009
New Revision: 197369
URL: http://svn.freebsd.org/changeset/base/197369

Log:
  Re-apply adaption to stable/6 which somehow managed to escape r197355.

Modified:
  stable/6/sys/dev/gem/if_gem_sbus.c

Modified: stable/6/sys/dev/gem/if_gem_sbus.c
==============================================================================
--- stable/6/sys/dev/gem/if_gem_sbus.c	Sun Sep 20 19:14:34 2009	(r197368)
+++ stable/6/sys/dev/gem/if_gem_sbus.c	Sun Sep 20 19:26:04 2009	(r197369)
@@ -167,7 +167,7 @@ gem_sbus_attach(device_t dev)
 	}
 
 	if (bus_setup_intr(dev, sc->sc_res[GEM_RES_INTR], INTR_TYPE_NET |
-	    INTR_MPSAFE, NULL, gem_intr, sc, &sc->sc_ih) != 0) {
+	    INTR_MPSAFE, gem_intr, sc, &sc->sc_ih) != 0) {
 		device_printf(dev, "failed to set up interrupt\n");
 		gem_detach(sc);
 		goto fail;


More information about the svn-src-all mailing list