Re: [PATCH v2 1/1] sandbox: fix building with CONFIG_SPL_TIMER=y

2023-03-01 Thread Simon Glass
On Tue, 21 Feb 2023 at 17:39, Heinrich Schuchardt wrote: > > Building sandbox_defconfig with CONFIG_SPL_TIMER=y results in an error > > include/dm/platdata.h:63:33: error: static assertion failed: > "Cannot use U_BOOT_DRVINFO with of-platdata. > Please use devicetree instead" > > Add a

Re: [PATCH v2 1/1] sandbox: fix building with CONFIG_SPL_TIMER=y

2023-02-22 Thread Simon Glass
On Tue, 21 Feb 2023 at 17:39, Heinrich Schuchardt wrote: > > Building sandbox_defconfig with CONFIG_SPL_TIMER=y results in an error > > include/dm/platdata.h:63:33: error: static assertion failed: > "Cannot use U_BOOT_DRVINFO with of-platdata. > Please use devicetree instead" > > Add a

[PATCH v2 1/1] sandbox: fix building with CONFIG_SPL_TIMER=y

2023-02-21 Thread Heinrich Schuchardt
Building sandbox_defconfig with CONFIG_SPL_TIMER=y results in an error include/dm/platdata.h:63:33: error: static assertion failed: "Cannot use U_BOOT_DRVINFO with of-platdata. Please use devicetree instead" Add a missing condition in the sandbox driver. Signed-off-by: Heinrich Schuc