Lines Matching refs:IdTable
24 //! const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = None;
27 //! const ACPI_ID_TABLE: Option<acpi::IdTable<Self::IdInfo>> = None;
77 //! infrastructure, such as finding the ID info from an [`of::IdTable`] or [`acpi::IdTable`].
324 /// The [`acpi::IdTable`] of the corresponding driver
325 fn acpi_id_table() -> Option<acpi::IdTable<Self::IdInfo>>;
327 /// Returns the driver's private data from the matching entry in the [`acpi::IdTable`], if any.
329 /// If this returns `None`, it means there is no match with an entry in the [`acpi::IdTable`].
358 /// The [`of::IdTable`] of the corresponding driver.
359 fn of_id_table() -> Option<of::IdTable<Self::IdInfo>>;
361 /// Returns the driver's private data from the matching entry in the [`of::IdTable`], if any.
363 /// If this returns `None`, it means there is no match with an entry in the [`of::IdTable`].