mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
net: macb: Fix coding style error message
checkpatch.pl gave the following error: ERROR: space required before the open parenthesis '(' + for(; p < end; p++, offset += 4) Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f51bdc236b
commit
96ec631090
1 changed files with 1 additions and 1 deletions
|
@ -499,7 +499,7 @@ static void macb_update_stats(struct macb *bp)
|
|||
|
||||
WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
|
||||
|
||||
for(; p < end; p++, offset += 4)
|
||||
for (; p < end; p++, offset += 4)
|
||||
*p += bp->macb_reg_readl(bp, offset);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue