[PATCH] drivers/net/ftgmac100.c: Fix a debug print
Tom Rini
trini at konsulko.com
Fri Jul 18 03:15:34 CEST 2025
In the debug print in ftgmac100_send we want to say where the packet is
in memory and what the length is, so use %p to print that.
Signed-off-by: Tom Rini <trini at konsulko.com>
---
drivers/net/ftgmac100.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ftgmac100.c b/drivers/net/ftgmac100.c
index f5ea2e72d1bb..33d1f7da3d76 100644
--- a/drivers/net/ftgmac100.c
+++ b/drivers/net/ftgmac100.c
@@ -546,7 +546,7 @@ static int ftgmac100_send(struct udevice *dev, void *packet, int length)
return -EPERM;
}
- debug("%s(%x, %x)\n", __func__, (int)packet, length);
+ debug("%s(%p, %x)\n", __func__, packet, length);
length = (length < ETH_ZLEN) ? ETH_ZLEN : length;
--
2.43.0
More information about the U-Boot
mailing list