mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-20 01:24:39 +08:00
atl1c: fix indentation issue on an if statement
An if statement is indented one level too deep, fix this by removing the extra tabs. Also add some spaces to the dev_warn arguments to clean up checkpatch warnings. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
282faf3d3a
commit
7509ef2add
@ -1833,10 +1833,10 @@ rrs_checked:
|
||||
atl1c_clean_rrd(rrd_ring, rrs, rfd_num);
|
||||
if (rrs->word3 & (RRS_RX_ERR_SUM | RRS_802_3_LEN_ERR)) {
|
||||
atl1c_clean_rfd(rfd_ring, rrs, rfd_num);
|
||||
if (netif_msg_rx_err(adapter))
|
||||
dev_warn(&pdev->dev,
|
||||
"wrong packet! rrs word3 is %x\n",
|
||||
rrs->word3);
|
||||
if (netif_msg_rx_err(adapter))
|
||||
dev_warn(&pdev->dev,
|
||||
"wrong packet! rrs word3 is %x\n",
|
||||
rrs->word3);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user