Re: [PATCH] net: guard call to tftp_start() with IS_ENABLED(CONFIG_CMD_TFTPBOOT)
On Mon, 02 Sep 2024 15:25:11 +0200, Jerome Forissier wrote: > net_auto_load() cannot call tftp_start() if CONFIG_CMD_TFTPBOOT is > disabled. > > Applied to u-boot/next, thanks! -- Tom
[PATCH] net: guard call to tftp_start() with IS_ENABLED(CONFIG_CMD_TFTPBOOT)
net_auto_load() cannot call tftp_start() if CONFIG_CMD_TFTPBOOT is disabled. Signed-off-by: Jerome Forissier --- net/net.c | 23 ++- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/net/net.c b/net/net.c index d9bc9df643f..1e0b7c85624 100644 --- a/net/net.c +++