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

Function device_get_ivars

freebsd/kern/subr_bus.c:2564–2569  ·  view source on GitHub ↗

* @brief Get the device's ivars field * * The ivars field is used by the parent device to store per-device * state (e.g. the physical location of the device or a list of * resources). */

Source from the content-addressed store, hash-verified

2562 * resources).
2563 */
2564void *
2565device_get_ivars(device_t dev)
2566{
2567 KASSERT(dev != NULL, ("device_get_ivars(NULL, ...)"));
2568 return (dev->ivars);
2569}
2570
2571/**
2572 * @brief Set the device's ivars field

Callers 15

jz4780_pinctrl_attachFunction · 0.85
apb_alloc_resourceFunction · 0.85
apb_get_resource_listFunction · 0.85
apb_alloc_resourceFunction · 0.85
apb_get_resource_listFunction · 0.85
nlm_xlpge_attachFunction · 0.85
ppt_probeFunction · 0.85
ppt_setup_msixFunction · 0.85
gic_v3_get_domainFunction · 0.85
gic_v3_fdt_print_childFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected