Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Apr 2008 13:46:37 GMT
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 139265 for review
Message-ID:  <200804031346.m33DkbkZ074105@repoman.freebsd.org>

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

Change 139265 by gonzo@gonzo_jeeves on 2008/04/03 13:46:14

	o conform new intr_event_add_handler API. Add bogus mask/unmask 
	    functions.

Affected files ...

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

Differences ...

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

@@ -259,7 +259,9 @@
 	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?200804031346.m33DkbkZ074105>