Re: [PATCH] dfu: Call backend specific dfu_fill_*() only if enabled

2022-11-30 Thread Marek Vasut
On 11/30/22 11:44, Patrick DELAUNAY wrote: Hi Marek, On 11/28/22 20:39, Marek Vasut wrote: The dfu_fill_*() functions are available only if the matching backend is enabled. Add missing CONFIG_IS_ENABLED() guard for each backend to prevent build errors, in case such a backend is enabled in U-B

Re: [PATCH] dfu: Call backend specific dfu_fill_*() only if enabled

2022-11-30 Thread Patrick DELAUNAY
Hi Marek, On 11/28/22 20:39, Marek Vasut wrote: The dfu_fill_*() functions are available only if the matching backend is enabled. Add missing CONFIG_IS_ENABLED() guard for each backend to prevent build errors, in case such a backend is enabled in U-Boot and not in SPL or vice versa. Signed-off-

Re: [PATCH] dfu: Call backend specific dfu_fill_*() only if enabled

2022-11-30 Thread Patrice CHOTARD
Hi Marek On 11/28/22 20:39, Marek Vasut wrote: > The dfu_fill_*() functions are available only if the matching backend is > enabled. Add missing CONFIG_IS_ENABLED() guard for each backend to prevent > build errors, in case such a backend is enabled in U-Boot and not in SPL > or vice versa. > > Si

[PATCH] dfu: Call backend specific dfu_fill_*() only if enabled

2022-11-28 Thread Marek Vasut
The dfu_fill_*() functions are available only if the matching backend is enabled. Add missing CONFIG_IS_ENABLED() guard for each backend to prevent build errors, in case such a backend is enabled in U-Boot and not in SPL or vice versa. Signed-off-by: Marek Vasut --- Cc: Lukasz Majewski Cc: Patri