Commit 1f4f067f authored by Vasanthy Kolluri's avatar Vasanthy Kolluri Committed by David S. Miller

enic: Fix build warnings

Fix data type of argument passed to pci_alloc_consistent and pci_free_consistent routines.
Signed-off-by: default avatarVasanthy Kolluri <vkolluri@cisco.com>
Signed-off-by: default avatarRoopa Prabhu <roprabhu@cisco.com>
Signed-off-by: default avatarDavid Wang <dwang2@cisco.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ce5a1213
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#define DRV_NAME "enic" #define DRV_NAME "enic"
#define DRV_DESCRIPTION "Cisco VIC Ethernet NIC Driver" #define DRV_DESCRIPTION "Cisco VIC Ethernet NIC Driver"
#define DRV_VERSION "1.4.1.6" #define DRV_VERSION "1.4.1.7"
#define DRV_COPYRIGHT "Copyright 2008-2010 Cisco Systems, Inc" #define DRV_COPYRIGHT "Copyright 2008-2010 Cisco Systems, Inc"
#define ENIC_BARS_MAX 6 #define ENIC_BARS_MAX 6
......
...@@ -2042,7 +2042,7 @@ static int enic_dev_hang_reset(struct enic *enic) ...@@ -2042,7 +2042,7 @@ static int enic_dev_hang_reset(struct enic *enic)
static int enic_set_rsskey(struct enic *enic) static int enic_set_rsskey(struct enic *enic)
{ {
u64 rss_key_buf_pa; dma_addr_t rss_key_buf_pa;
union vnic_rss_key *rss_key_buf_va = NULL; union vnic_rss_key *rss_key_buf_va = NULL;
union vnic_rss_key rss_key = { union vnic_rss_key rss_key = {
.key[0].b = {85, 67, 83, 97, 119, 101, 115, 111, 109, 101}, .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,7 +2073,7 @@ static int enic_set_rsskey(struct enic *enic)
static int enic_set_rsscpu(struct enic *enic, u8 rss_hash_bits) static int enic_set_rsscpu(struct enic *enic, u8 rss_hash_bits)
{ {
u64 rss_cpu_buf_pa; dma_addr_t rss_cpu_buf_pa;
union vnic_rss_cpu *rss_cpu_buf_va = NULL; union vnic_rss_cpu *rss_cpu_buf_va = NULL;
unsigned int i; unsigned int i;
int err; int err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment