summaryrefslogtreecommitdiff
path: root/net/lwip/net-lwip.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-03-31 07:39:36 -0600
committerTom Rini <trini@konsulko.com>2025-03-31 07:39:36 -0600
commitc17f03a7e93dfbbe5d32f5738274187065d9493f (patch)
tree1ba5750e71a5d89270a3fe4f542043f53ac858a9 /net/lwip/net-lwip.c
parent5e74863ad6613df9c69c576910b536e885083d65 (diff)
parent64b973fc78fdba18389d372d6af2af18ee79dd8c (diff)
Merge tag 'net-20250314' of https://source.denx.de/u-boot/custodians/u-boot-net
Pull request net-20250314. kconfig: * Fix submenu for network commands net: * Remove a useless (commented out) line in net-common.h net-lwip: * Remove error print on failed tx * Fix return code of ping_loop() when no ethernet device is found * Remove superfluous newline in help text for tftp
Diffstat (limited to 'net/lwip/net-lwip.c')
-rw-r--r--net/lwip/net-lwip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/lwip/net-lwip.c b/net/lwip/net-lwip.c
index cab1dd7d483..4d2aa6099dd 100644
--- a/net/lwip/net-lwip.c
+++ b/net/lwip/net-lwip.c
@@ -50,7 +50,7 @@ static err_t linkoutput(struct netif *netif, struct pbuf *p)
err = eth_get_ops(udev)->send(udev, pp ? pp : p->payload, p->len);
free(pp);
if (err) {
- log_err("send error %d\n", err);
+ debug("send error %d\n", err);
return ERR_ABRT;
}