Deleted Added
full compact
26c26
< # $FreeBSD: head/sys/kern/bus_if.m 198134 2009-10-15 14:54:35Z jhb $
---
> # $FreeBSD: head/sys/kern/bus_if.m 209154 2010-06-14 07:10:37Z mav $
49a50,58
>
> static int
> null_remap_intr(device_t bus, device_t dev, u_int irq)
> {
>
> if (dev != NULL)
> return (BUS_REMAP_INTR(dev, NULL, irq));
> return (ENXIO);
> }
602a612,624
>
> /**
> * @brief Notify a bus that specified child's IRQ should be remapped.
> *
> * @param _dev the bus device
> * @param _child the child device
> * @param _irq the irq number
> */
> METHOD int remap_intr {
> device_t _dev;
> device_t _child;
> u_int _irq;
> } DEFAULT null_remap_intr;