Home
last modified time | relevance | path

Searched refs:probe_callback (Results 1 – 4 of 4) sorted by relevance

/linux/rust/kernel/
H A Dplatform.rs50 (*pdrv.get()).probe = Some(Self::probe_callback); in register()
67 extern "C" fn probe_callback(pdev: *mut bindings::platform_device) -> kernel::ffi::c_int { in probe_callback() method
71 // INVARIANT: `pdev` is valid for the duration of `probe_callback()`. in probe_callback()
87 // INVARIANT: `pdev` is valid for the duration of `probe_callback()`. in remove_callback()
91 // `probe_callback`, hence it's guaranteed that `Device::set_drvdata()` has been called in remove_callback()
H A Dauxiliary.rs37 (*adrv.get()).probe = Some(Self::probe_callback); in register()
55 extern "C" fn probe_callback( in probe_callback() method
62 // INVARIANT: `adev` is valid for the duration of `probe_callback()`. in probe_callback()
82 // INVARIANT: `adev` is valid for the duration of `probe_callback()`. in remove_callback()
86 // `probe_callback`, hence it's guaranteed that `Device::set_drvdata()` has been called in remove_callback()
H A Dpci.rs42 (*pdrv.get()).probe = Some(Self::probe_callback); in register()
60 extern "C" fn probe_callback( in probe_callback() method
67 // INVARIANT: `pdev` is valid for the duration of `probe_callback()`. in probe_callback()
91 // `probe_callback`, hence it's guaranteed that `Device::set_drvdata()` has been called in remove_callback()
/linux/rust/kernel/net/
H A Dphy.rs329 unsafe extern "C" fn probe_callback(phydev: *mut bindings::phy_device) -> c_int { in probe_callback() method
510 Some(Adapter::<T>::probe_callback) in create_phy_driver()