| /linux/samples/rust/ |
| H A D | rust_driver_i2c.rs | 19 <SampleDriver as i2c::Driver>::IdInfo, 26 <SampleDriver as i2c::Driver>::IdInfo, 33 <SampleDriver as i2c::Driver>::IdInfo, 38 type IdInfo = u32; typedef 40 const ACPI_ID_TABLE: Option<acpi::IdTable<Self::IdInfo>> = Some(&ACPI_TABLE); 41 const I2C_ID_TABLE: Option<i2c::IdTable<Self::IdInfo>> = Some(&I2C_TABLE); 42 const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = Some(&OF_TABLE); 46 info: Option<&Self::IdInfo>, in probe() argument
|
| H A D | rust_driver_auxiliary.rs | 29 <AuxiliaryDriver as auxiliary::Driver>::IdInfo, 34 type IdInfo = (); typedef 36 const ID_TABLE: auxiliary::IdTable<Self::IdInfo> = &AUX_TABLE; 38 fn probe(adev: &auxiliary::Device<Core>, _info: &Self::IdInfo) -> impl PinInit<Self, Error> { in probe() 63 <ParentDriver as pci::Driver>::IdInfo, 68 type IdInfo = (); typedef 70 const ID_TABLE: pci::IdTable<Self::IdInfo> = &PCI_TABLE; 72 fn probe(pdev: &pci::Device<Core>, _info: &Self::IdInfo) -> impl PinInit<Self, Error> { in probe()
|
| H A D | rust_i2c_client.rs | 92 <SampleDriver as platform::Driver>::IdInfo, 99 <SampleDriver as platform::Driver>::IdInfo, 109 type IdInfo = (); typedef 110 const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = Some(&OF_TABLE); 111 const ACPI_ID_TABLE: Option<acpi::IdTable<Self::IdInfo>> = Some(&ACPI_TABLE); 115 _info: Option<&Self::IdInfo>, in probe() argument
|
| H A D | rust_driver_platform.rs | 87 <SampleDriver as platform::Driver>::IdInfo, 94 <SampleDriver as platform::Driver>::IdInfo, 99 type IdInfo = Info; typedef 100 const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = Some(&OF_TABLE); 101 const ACPI_ID_TABLE: Option<acpi::IdTable<Self::IdInfo>> = Some(&ACPI_TABLE); 105 info: Option<&Self::IdInfo>, in probe() argument
|
| H A D | rust_driver_usb.rs | 15 <SampleDriver as usb::Driver>::IdInfo, 20 type IdInfo = (); typedef 21 const ID_TABLE: usb::IdTable<Self::IdInfo> = &USB_TABLE; 26 _info: &Self::IdInfo, in probe() argument
|
| H A D | rust_debugfs.rs | 100 <RustDebugFs as platform::Driver>::IdInfo, 105 type IdInfo = (); typedef 106 const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = None; 107 const ACPI_ID_TABLE: Option<acpi::IdTable<Self::IdInfo>> = Some(&ACPI_TABLE); 111 _info: Option<&Self::IdInfo>, in probe() argument
|
| H A D | rust_driver_pci.rs | 39 <SampleDriver as pci::Driver>::IdInfo, 64 type IdInfo = TestIndex; typedef 66 const ID_TABLE: pci::IdTable<Self::IdInfo> = &PCI_TABLE; 68 fn probe(pdev: &pci::Device<Core>, info: &Self::IdInfo) -> impl PinInit<Self, Error> { in probe()
|
| H A D | rust_dma.rs | 50 <DmaSampleDriver as pci::Driver>::IdInfo, 55 type IdInfo = (); typedef 56 const ID_TABLE: pci::IdTable<Self::IdInfo> = &PCI_TABLE; 58 fn probe(pdev: &pci::Device<Core>, _info: &Self::IdInfo) -> impl PinInit<Self, Error> { in probe()
|
| /linux/rust/kernel/ |
| H A D | driver.rs | 227 type IdInfo: 'static; typedef 230 fn acpi_id_table() -> Option<acpi::IdTable<Self::IdInfo>>; in acpi_id_table() 235 fn acpi_id_info(dev: &device::Device) -> Option<&'static Self::IdInfo> { in acpi_id_info() argument 264 fn of_id_table() -> Option<of::IdTable<Self::IdInfo>>; in of_id_table() 269 fn of_id_info(dev: &device::Device) -> Option<&'static Self::IdInfo> { in of_id_info() argument 305 fn id_info(dev: &device::Device) -> Option<&'static Self::IdInfo> { in id_info() argument
|
| H A D | i2c.rs | 190 fn i2c_id_table() -> Option<IdTable<<Self as driver::Adapter>::IdInfo>> { in i2c_id_table() 197 fn i2c_id_info(dev: &I2cClient) -> Option<&'static <Self as driver::Adapter>::IdInfo> { in i2c_id_info() argument 218 type IdInfo = T::IdInfo; typedef 220 fn of_id_table() -> Option<of::IdTable<Self::IdInfo>> { in of_id_table() 224 fn acpi_id_table() -> Option<acpi::IdTable<Self::IdInfo>> { in acpi_id_table() 311 type IdInfo: 'static; typedef 314 const I2C_ID_TABLE: Option<IdTable<Self::IdInfo>> = None; 317 const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = None; 320 const ACPI_ID_TABLE: Option<acpi::IdTable<Self::IdInfo>> = None; 328 id_info: Option<&Self::IdInfo>, in probe() argument
|
| H A D | platform.rs | 102 type IdInfo = T::IdInfo; typedef 104 fn of_id_table() -> Option<of::IdTable<Self::IdInfo>> { in of_id_table() 108 fn acpi_id_table() -> Option<acpi::IdTable<Self::IdInfo>> { in acpi_id_table() 182 type IdInfo: 'static; typedef 185 const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = None; 188 const ACPI_ID_TABLE: Option<acpi::IdTable<Self::IdInfo>> = None; 196 id_info: Option<&Self::IdInfo>, in probe() argument
|
| H A D | auxiliary.rs | 181 type IdInfo: 'static; typedef 184 const ID_TABLE: IdTable<Self::IdInfo>; 189 fn probe(dev: &Device<device::Core>, id_info: &Self::IdInfo) -> impl PinInit<Self, Error>; in probe()
|
| H A D | pci.rs | 285 type IdInfo: 'static; typedef 288 const ID_TABLE: IdTable<Self::IdInfo>; 294 fn probe(dev: &Device<device::Core>, id_info: &Self::IdInfo) -> impl PinInit<Self, Error>; in probe()
|
| H A D | usb.rs | 289 type IdInfo: 'static; typedef 292 const ID_TABLE: IdTable<Self::IdInfo>; 301 id_info: &Self::IdInfo, in probe() argument
|
| /linux/drivers/gpu/nova-core/ |
| H A D | driver.rs | 46 <NovaCore as pci::Driver>::IdInfo, 69 type IdInfo = (); typedef 70 const ID_TABLE: pci::IdTable<Self::IdInfo> = &PCI_TABLE; 72 fn probe(pdev: &pci::Device<Core>, _info: &Self::IdInfo) -> impl PinInit<Self, Error> { in probe()
|
| /linux/drivers/gpu/drm/nova/ |
| H A D | driver.rs | 37 <NovaDriver as auxiliary::Driver>::IdInfo, 45 type IdInfo = (); typedef 46 const ID_TABLE: auxiliary::IdTable<Self::IdInfo> = &AUX_TABLE; 48 fn probe(adev: &auxiliary::Device<Core>, _info: &Self::IdInfo) -> impl PinInit<Self, Error> { in probe()
|
| /linux/drivers/cpufreq/ |
| H A D | rcpufreq_dt.rs | 199 <CPUFreqDTDriver as platform::Driver>::IdInfo, 204 type IdInfo = (); typedef 205 const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = Some(&OF_TABLE); 209 _id_info: Option<&Self::IdInfo>, in probe() argument
|
| /linux/drivers/gpu/drm/tyr/ |
| H A D | driver.rs | 92 <TyrDriver as platform::Driver>::IdInfo, 100 type IdInfo = (); typedef 101 const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = Some(&OF_TABLE); 105 _info: Option<&Self::IdInfo>, in probe() argument
|
| /linux/drivers/pwm/ |
| H A D | pwm_th1520.rs | 329 <Th1520PwmPlatformDriver as platform::Driver>::IdInfo, 334 type IdInfo = (); typedef 335 const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = Some(&OF_TABLE); 339 _id_info: Option<&Self::IdInfo>, in probe() argument
|