Deleted Added
full compact
31c31
< __FBSDID("$FreeBSD: head/sys/sparc64/isa/isa.c 207241 2010-04-26 18:49:06Z marius $");
---
> __FBSDID("$FreeBSD: head/sys/sparc64/isa/isa.c 221526 2011-05-06 13:48:53Z jhb $");
362,384d361
<
< int
< isa_setup_intr(device_t dev, device_t child, struct resource *irq, int flags,
< driver_filter_t *filter, driver_intr_t *intr, void *arg, void **cookiep)
< {
<
< /*
< * Just pass through. This is going to be handled by either
< * one of the parent PCI buses or the nexus device.
< * The interrupt had been routed before it was added to the
< * resource list of the child.
< */
< return (bus_generic_setup_intr(dev, child, irq, flags, filter, intr,
< arg, cookiep));
< }
<
< int
< isa_teardown_intr(device_t dev, device_t child, struct resource *irq,
< void *cookie)
< {
<
< return (bus_generic_teardown_intr(dev, child, irq, cookie));
< }