예제 #1
0
static int
nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
{

#ifdef INTRNG
	return (intr_teardown_irq(child, r, ih));
#else
	return (arm_remove_irqhandler(rman_get_start(r), ih));
#endif
}
예제 #2
0
파일: nexus.c 프로젝트: amir-partovi/Taha
static int
nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
{

	return (arm_remove_irqhandler(rman_get_start(r), ih));
}