Re: [PATCH] sh_eth: coding style fixes
From: Sergei Shtylyov <hidden>
Date: 2014-01-03 09:52:45
Also in:
linux-sh
From: Sergei Shtylyov <hidden>
Date: 2014-01-03 09:52:45
Also in:
linux-sh
Hello. On 03-01-2014 5:42, Joe Perches wrote:
quoted
quoted
@@ -1952,8 +1949,8 @@ static void sh_eth_tx_timeout(struct net netif_stop_queue(ndev); if (netif_msg_timer(mdp)) - dev_err(&ndev->dev, "%s: transmit timed out, status %8.8x," - " resetting...\n", ndev->name, (int)sh_eth_read(ndev, EESR)); + dev_err(&ndev->dev, "%s: transmit timed out, status %8.8x, resetting...\n" + ndev->name, (int)sh_eth_read(ndev, EESR)); /* tx_errors count up */ ndev->stats.tx_errors++;
quoted
You did not build test this.
quoted
drivers/net/ethernet/renesas/sh_eth.c: In function ‘sh_eth_tx_timeout’: drivers/net/ethernet/renesas/sh_eth.c:1953:4: error: expected ‘)’ before ‘ndev’
Also, this would likely be better as: netif_err(mdp, timer, ndev, "transmit timed out, status %#08lx, resetting...\n", sh_eth_read(ndev, EESR));
If checkpoint.pl did point this out, I would have fixed it. Since it
doesn't, it's probably material of another patch.
WBR, Sergei