Re: [PATCH v5 4/6] rust: platform: Add ACPI match table support to `Driver` trait

From: Danilo Krummrich
Date: Wed Jun 11 2025 - 17:29:16 EST


On Wed, Jun 11, 2025 at 06:51:21PM +0100, Igor Korotin wrote:
> @@ -162,7 +178,10 @@ pub trait Driver: Send {
> type IdInfo: 'static;
>
> /// The table of OF device ids supported by the driver.
> - const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>>;
> + const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = None;

This change is fine, but it should be a separate patch.