[PATCH] net: eth_legacy - fix build CMD_PCAP

Fix typo which would cause a build error.
Fixes: 3eaac6307df ("net: introduce packet capture support")
Signed-off-by: Jorge Ramirez-Ortiz jorge@foundries.io --- net/eth_legacy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/eth_legacy.c b/net/eth_legacy.c index 6e0c058761..6870afb505 100644 --- a/net/eth_legacy.c +++ b/net/eth_legacy.c @@ -365,7 +365,7 @@ int eth_send(void *packet, int length) ret = eth_current->send(eth_current, packet, length); #if defined(CONFIG_CMD_PCAP) if (ret >= 0) - pcap_post(packet, lengeth, true); + pcap_post(packet, length, true); #endif return ret; }

On Fri, Dec 04, 2020 at 08:59:58PM +0100, Jorge Ramirez-Ortiz wrote:
Fix typo which would cause a build error.
Fixes: 3eaac6307df ("net: introduce packet capture support")
Signed-off-by: Jorge Ramirez-Ortiz jorge@foundries.io
Applied to u-boot/master, thanks!
participants (2)
-
Jorge Ramirez-Ortiz
-
Tom Rini