Ejemplo n.º 1
0
static int
nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
{

    inthand_remove(rman_get_start(r), ih);
    return (0);
}
Ejemplo n.º 2
0
Archivo: nexus.c Proyecto: MarginC/kame
static int
nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
{
	return (inthand_remove(ih));
}