Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Apr 2008 21:32:57 GMT
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 139298 for review
Message-ID:  <200804032132.m33LWvTM031237@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=139298

Change 139298 by gonzo@gonzo_jeeves on 2008/04/03 21:32:28

	o Conform new intr_event_create API.
	Pointed out by:	Naoki Hamada

Affected files ...

.. //depot/projects/mips2-jnpr/src/sys/mips/mips32/adm5120/obio.c#2 edit

Differences ...

==== //depot/projects/mips2-jnpr/src/sys/mips/mips32/adm5120/obio.c#2 (text+ko) ====

@@ -321,7 +321,8 @@
 	event = sc->sc_eventstab[irq];
 	if (event == NULL) {
 		error = intr_event_create(&event, (void *)irq, 0,
-		    (void (*)(void *))NULL, "obio intr%d:", irq);
+		    (mask_fn)mips_mask_irq, (mask_fn)mips_unmask_irq,
+		    NULL, NULL, "obio intr%d:", irq);
 
 		sc->sc_eventstab[irq] = event;
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200804032132.m33LWvTM031237>