diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-04-06 18:09:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-07 05:07:49 -0400 |
commit | 2cc3c6b1bc2d68ddb003a94f7313999f7984735f (patch) | |
tree | ac4b09a37bc388062e7da1c94981324cff1f8382 /drivers/net/au1000_eth.h | |
parent | eb0496308f22093d5b3ce6c9d591233047f41d39 (diff) |
au1000-eth: fix checkpatch errors.
This patch fixes multiple errors reported by checkpatch:
- else not on the ending brace of an if { }
- multiple occurences of for( instead of for (
- c99 comments
- assignment and tests on the same line
- test and statements on the same line
- macro with complex value not between parenthesis
- static variable with initialization value
No functionnal change.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/au1000_eth.h')
-rw-r--r-- | drivers/net/au1000_eth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/au1000_eth.h b/drivers/net/au1000_eth.h index f9d29a29b8fd..344c600fbf58 100644 --- a/drivers/net/au1000_eth.h +++ b/drivers/net/au1000_eth.h | |||
@@ -35,7 +35,7 @@ | |||
35 | #define NUM_TX_BUFFS 4 | 35 | #define NUM_TX_BUFFS 4 |
36 | #define MAX_BUF_SIZE 2048 | 36 | #define MAX_BUF_SIZE 2048 |
37 | 37 | ||
38 | #define ETH_TX_TIMEOUT HZ/4 | 38 | #define ETH_TX_TIMEOUT (HZ/4) |
39 | #define MAC_MIN_PKT_SIZE 64 | 39 | #define MAC_MIN_PKT_SIZE 64 |
40 | 40 | ||
41 | #define MULTICAST_FILTER_LIMIT 64 | 41 | #define MULTICAST_FILTER_LIMIT 64 |