MCPcopy Create free account
hub / github.com/F-Stack/f-stack / bus_bind_intr

Function bus_bind_intr

freebsd/kern/subr_bus.c:4783–4789  ·  view source on GitHub ↗

* @brief Wrapper function for BUS_BIND_INTR(). * * This function simply calls the BUS_BIND_INTR() method of the * parent of @p dev. */

Source from the content-addressed store, hash-verified

4781 * parent of @p dev.
4782 */
4783int
4784bus_bind_intr(device_t dev, struct resource *r, int cpu)
4785{
4786 if (dev->parent == NULL)
4787 return (EINVAL);
4788 return (BUS_BIND_INTR(dev->parent, dev, r, cpu));
4789}
4790
4791/**
4792 * @brief Wrapper function for BUS_DESCRIBE_INTR().

Callers 6

XX_PreallocAndBindIntrFunction · 0.85
octeon_wdog_setupFunction · 0.85
pmu_attachFunction · 0.85
taskqgroup_attachFunction · 0.85
taskqgroup_attach_cpuFunction · 0.85
atrtc_attachFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected