diff options
author | Vasanthy Kolluri <vkolluri@cisco.com> | 2010-11-15 03:09:55 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-15 14:13:19 -0500 |
commit | 1f4f067f99cbb2af7af7a67bd025a9fb58b5156c (patch) | |
tree | 7830cff52e76bb8c650425bdc3203e1e5299b939 /drivers/net/enic/enic_main.c | |
parent | ce5a121304af02d02489e86efb6ae26a67f95e52 (diff) |
enic: Fix build warnings
Fix data type of argument passed to pci_alloc_consistent and pci_free_consistent routines.
Signed-off-by: Vasanthy Kolluri <vkolluri@cisco.com>
Signed-off-by: Roopa Prabhu <roprabhu@cisco.com>
Signed-off-by: David Wang <dwang2@cisco.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/enic/enic_main.c')
-rw-r--r-- | drivers/net/enic/enic_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/enic/enic_main.c b/drivers/net/enic/enic_main.c index a466ef91dd43..9f293fa24768 100644 --- a/drivers/net/enic/enic_main.c +++ b/drivers/net/enic/enic_main.c | |||
@@ -2042,7 +2042,7 @@ static int enic_dev_hang_reset(struct enic *enic) | |||
2042 | 2042 | ||
2043 | static int enic_set_rsskey(struct enic *enic) | 2043 | static int enic_set_rsskey(struct enic *enic) |
2044 | { | 2044 | { |
2045 | u64 rss_key_buf_pa; | 2045 | dma_addr_t rss_key_buf_pa; |
2046 | union vnic_rss_key *rss_key_buf_va = NULL; | 2046 | union vnic_rss_key *rss_key_buf_va = NULL; |
2047 | union vnic_rss_key rss_key = { | 2047 | union vnic_rss_key rss_key = { |
2048 | .key[0].b = {85, 67, 83, 97, 119, 101, 115, 111, 109, 101}, | 2048 | .key[0].b = {85, 67, 83, 97, 119, 101, 115, 111, 109, 101}, |
@@ -2073,7 +2073,7 @@ static int enic_set_rsskey(struct enic *enic) | |||
2073 | 2073 | ||
2074 | static int enic_set_rsscpu(struct enic *enic, u8 rss_hash_bits) | 2074 | static int enic_set_rsscpu(struct enic *enic, u8 rss_hash_bits) |
2075 | { | 2075 | { |
2076 | u64 rss_cpu_buf_pa; | 2076 | dma_addr_t rss_cpu_buf_pa; |
2077 | union vnic_rss_cpu *rss_cpu_buf_va = NULL; | 2077 | union vnic_rss_cpu *rss_cpu_buf_va = NULL; |
2078 | unsigned int i; | 2078 | unsigned int i; |
2079 | int err; | 2079 | int err; |