Home
last modified time | relevance | path

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

/DragonOS/kernel/src/driver/base/
H A Dsubsys.rs39 drivers_autoprobe: AtomicBool, field
76 drivers_autoprobe: AtomicBool::new(false), in new()
128 pub fn drivers_autoprobe(&self) -> bool { in drivers_autoprobe() method
129 return self.drivers_autoprobe.load(Ordering::SeqCst); in drivers_autoprobe()
132 pub fn set_drivers_autoprobe(&self, drivers_autoprobe: bool) { in set_drivers_autoprobe()
133 self.drivers_autoprobe in set_drivers_autoprobe()
134 .store(drivers_autoprobe, Ordering::SeqCst); in set_drivers_autoprobe()
/DragonOS/kernel/src/driver/base/device/
H A Dbus.rs312 if bus.subsystem().drivers_autoprobe() { in add_driver()
458 if bus.subsystem().drivers_autoprobe() { in probe_device()
673 let val = if bus.subsystem().drivers_autoprobe() { in show()