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

Function device_set_ivars

freebsd/kern/subr_bus.c:2574–2579  ·  view source on GitHub ↗

* @brief Set the device's ivars field */

Source from the content-addressed store, hash-verified

2572 * @brief Set the device's ivars field
2573 */
2574void
2575device_set_ivars(device_t dev, void * ivars)
2576{
2577 KASSERT(dev != NULL, ("device_set_ivars(NULL, ...)"));
2578 dev->ivars = ivars;
2579}
2580
2581/**
2582 * @brief Return the device's state

Callers 15

jz4780_ehci_attachFunction · 0.85
jz4780_ohci_attachFunction · 0.85
apb_add_childFunction · 0.85
ar71xx_ohci_attachFunction · 0.85
ar71xx_ehci_attachFunction · 0.85
apb_add_childFunction · 0.85
nexus_add_childFunction · 0.85
octusb_octeon_attachFunction · 0.85
ohci_fdt_attachFunction · 0.85
ehci_fdt_attachFunction · 0.85
dotg_fdt_attachFunction · 0.85
mtk_xhci_fdt_attachFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected