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

Function bus_delete_resource

freebsd/kern/subr_bus.c:4887–4891  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

4885 * parent of @p dev.
4886 */
4887void
4888bus_delete_resource(device_t dev, int type, int rid)
4889{
4890 BUS_DELETE_RESOURCE(device_get_parent(dev), dev, type, rid);
4891}
4892
4893/**
4894 * @brief Wrapper function for BUS_CHILD_PRESENT().

Callers 6

bcm_mips_init_cpuirqFunction · 0.85
bcm_mips_fini_cpuirqFunction · 0.85
amdvi_free_evt_intr_resFunction · 0.85
orm_identifyFunction · 0.85
dmar_release_intrFunction · 0.85
dmar_alloc_irqFunction · 0.85

Calls 1

device_get_parentFunction · 0.85

Tested by

no test coverage detected