diff options
author | Scott Feldman <scofeldm@cisco.com> | 2009-12-23 08:27:59 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-12-24 00:03:42 -0500 |
commit | d87fd25d5ac4cd044e21b749a8f6cac90f093c71 (patch) | |
tree | 20d1f1db5063218b6733171b4ec48c66bd3a469d /drivers/net/enic/vnic_nic.h | |
parent | 7c8445991172cc17eaca9f7de0a300c02caaa49d (diff) |
enic: whitespace cleanup; #define cleanup; more verbose err msg
Some misc changes to cleanup whitespace issues and fix/remove some #define
HW defintions.
1) fix some whitespace issues
2) more verbose err msg when resources aren't available to configure vnic
3) remove unused #define
4) fix RSS #define rss hash types
Signed-off-by: Vasanthy Kolluri <vkolluri@cisco.com>
Signed-off-by: Scott Feldman <scofeldm@cisco.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/enic/vnic_nic.h')
-rw-r--r-- | drivers/net/enic/vnic_nic.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/enic/vnic_nic.h b/drivers/net/enic/vnic_nic.h index eeaf329945d8..cf80ab46d582 100644 --- a/drivers/net/enic/vnic_nic.h +++ b/drivers/net/enic/vnic_nic.h | |||
@@ -41,12 +41,12 @@ | |||
41 | #define NIC_CFG_IG_VLAN_STRIP_EN_MASK_FIELD 1UL | 41 | #define NIC_CFG_IG_VLAN_STRIP_EN_MASK_FIELD 1UL |
42 | #define NIC_CFG_IG_VLAN_STRIP_EN_SHIFT 24 | 42 | #define NIC_CFG_IG_VLAN_STRIP_EN_SHIFT 24 |
43 | 43 | ||
44 | #define NIC_CFG_RSS_HASH_TYPE_IPV4 (1 << 0) | 44 | #define NIC_CFG_RSS_HASH_TYPE_IPV4 (1 << 1) |
45 | #define NIC_CFG_RSS_HASH_TYPE_TCP_IPV4 (1 << 1) | 45 | #define NIC_CFG_RSS_HASH_TYPE_TCP_IPV4 (1 << 2) |
46 | #define NIC_CFG_RSS_HASH_TYPE_IPV6 (1 << 2) | 46 | #define NIC_CFG_RSS_HASH_TYPE_IPV6 (1 << 3) |
47 | #define NIC_CFG_RSS_HASH_TYPE_TCP_IPV6 (1 << 3) | 47 | #define NIC_CFG_RSS_HASH_TYPE_TCP_IPV6 (1 << 4) |
48 | #define NIC_CFG_RSS_HASH_TYPE_IPV6_EX (1 << 4) | 48 | #define NIC_CFG_RSS_HASH_TYPE_IPV6_EX (1 << 5) |
49 | #define NIC_CFG_RSS_HASH_TYPE_TCP_IPV6_EX (1 << 5) | 49 | #define NIC_CFG_RSS_HASH_TYPE_TCP_IPV6_EX (1 << 6) |
50 | 50 | ||
51 | static inline void vnic_set_nic_cfg(u32 *nic_cfg, | 51 | static inline void vnic_set_nic_cfg(u32 *nic_cfg, |
52 | u8 rss_default_cpu, u8 rss_hash_type, | 52 | u8 rss_default_cpu, u8 rss_hash_type, |