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

Function devclass_find

freebsd/kern/subr_bus.c:1042–1046  ·  view source on GitHub ↗

* @brief Find a device class * * If a device class with the name @p classname exists, return it, * otherwise return @c NULL. * * @param classname the devclass name to find */

Source from the content-addressed store, hash-verified

1040 * @param classname the devclass name to find
1041 */
1042devclass_t
1043devclass_find(const char *classname)
1044{
1045 return (devclass_find_internal(classname, NULL, FALSE));
1046}
1047
1048/**
1049 * @brief Register that a device driver has been added to a devclass

Callers 15

bcm_mbox_writeFunction · 0.85
piix_probeFunction · 0.85
pnpbios_identifyFunction · 0.85
ci20_hp_unmuteFunction · 0.85
platform_init_secondaryFunction · 0.85
nlm_xlpnae_update_pdeFunction · 0.85
iommu_initFunction · 0.85
thunder_pem_attachFunction · 0.85
fpgamgr_s10_attachFunction · 0.85
a10hdmiaudio_chan_initFunction · 0.85

Calls 1

devclass_find_internalFunction · 0.85

Tested by

no test coverage detected