Home
last modified time | relevance | path

Searched refs:DF_EXTERNALSOFTC (Results 1 – 2 of 2) sorted by relevance

/third_party/FreeBSD/sys/kern/
Dsubr_bus.c1057 if (dev->softc && !(dev->flags & DF_EXTERNALSOFTC)) in device_set_softc()
1061 dev->flags |= DF_EXTERNALSOFTC; in device_set_softc()
1063 dev->flags &= ~DF_EXTERNALSOFTC; in device_set_softc()
1090 dev->flags |= DF_EXTERNALSOFTC; in device_claim_softc()
1092 dev->flags &= ~DF_EXTERNALSOFTC; in device_claim_softc()
2393 if (dev->softc && !(dev->flags & DF_EXTERNALSOFTC)) { in device_set_driver()
2402 if (!(dev->flags & DF_EXTERNALSOFTC) && driver->size > 0) { in device_set_driver()
/third_party/FreeBSD/sys/sys/
Dbus.h81 #define DF_EXTERNALSOFTC 0x40 /* softc not allocated by us */ macro