diff options
author | Wolfgang Denk | 2014-11-06 14:03:00 +0100 |
---|---|---|
committer | Tom Rini | 2014-11-07 16:27:07 -0500 |
commit | 1779dc0fe45ab303c44f19dfd13df00269e42ad5 (patch) | |
tree | 2915d3ab55d18484388afa422b226cdc1036e7e4 /drivers/net/uli526x.c | |
parent | b807288fdc50d756f0f6ca6aff12bade3dc3a7f9 (diff) |
drivers/net/uli526x.c: fix syntax error
Fix error detected by cppcheck:
[drivers/net/uli526x.c:551]: (error) printf format string requires 3
parameters but only 2 are given.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Roy Zang <tie-fei.zang@freescale.com>
Diffstat (limited to 'drivers/net/uli526x.c')
-rw-r--r-- | drivers/net/uli526x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/uli526x.c b/drivers/net/uli526x.c index 538f11e3eba..9526faa4aff 100644 --- a/drivers/net/uli526x.c +++ b/drivers/net/uli526x.c @@ -548,7 +548,7 @@ static int uli526x_rx_packet(struct eth_device *dev) rdes0 = le32_to_cpu(rxptr->rdes0); #ifdef RX_DEBUG - printf("%s(): rxptr->rdes0=%x:%x\n", __FUNCTION__, rxptr->rdes0); + printf("%s(): rxptr->rdes0=%x\n", __FUNCTION__, rxptr->rdes0); #endif if (!(rdes0 & 0x80000000)) { /* packet owner check */ if ((rdes0 & 0x300) != 0x300) { |