Commit 858ce8ca authored by Cristian Birsan's avatar Cristian Birsan Committed by Jakub Kicinski

net: usb: lan78xx: Fix error message format specifier

Display the return code as decimal integer.

Fixes: 55d7de9d ("Microchip's LAN7800 family USB 2/3 to 10/100/1000 Ethernet device driver")
Signed-off-by: default avatarCristian Birsan <cristian.birsan@microchip.com>
Signed-off-by: default avatarJakub Kicinski <jakub.kicinski@netronome.com>
parent 479a0d13
...@@ -511,7 +511,7 @@ static int lan78xx_read_stats(struct lan78xx_net *dev, ...@@ -511,7 +511,7 @@ static int lan78xx_read_stats(struct lan78xx_net *dev,
} }
} else { } else {
netdev_warn(dev->net, netdev_warn(dev->net,
"Failed to read stat ret = 0x%x", ret); "Failed to read stat ret = %d", ret);
} }
kfree(stats); kfree(stats);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment