diff options
author | Sucheta Chakraborty <sucheta.chakraborty@qlogic.com> | 2010-10-04 00:20:14 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-10-05 01:46:51 -0400 |
commit | a1c0c459918e8c8ce152deba84f9ed27d7eb0e53 (patch) | |
tree | f537bd359d904669127840953191f600b2191a42 /drivers/net/qlcnic/qlcnic_main.c | |
parent | 7e56cac4b68805470849ba373dd313ba0e7cdb81 (diff) |
qlcnic: sparse warning fixes
Signed-off-by: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com>
Signed-off-by: Amit Kumar Salecha <amit.salecha@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/qlcnic/qlcnic_main.c')
-rw-r--r-- | drivers/net/qlcnic/qlcnic_main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/qlcnic/qlcnic_main.c b/drivers/net/qlcnic/qlcnic_main.c index 6001f41a70ad..59a213814334 100644 --- a/drivers/net/qlcnic/qlcnic_main.c +++ b/drivers/net/qlcnic/qlcnic_main.c | |||
@@ -521,9 +521,9 @@ qlcnic_init_pci_info(struct qlcnic_adapter *adapter) | |||
521 | pfn = pci_info[i].id; | 521 | pfn = pci_info[i].id; |
522 | if (pfn > QLCNIC_MAX_PCI_FUNC) | 522 | if (pfn > QLCNIC_MAX_PCI_FUNC) |
523 | return QL_STATUS_INVALID_PARAM; | 523 | return QL_STATUS_INVALID_PARAM; |
524 | adapter->npars[pfn].active = pci_info[i].active; | 524 | adapter->npars[pfn].active = (u8)pci_info[i].active; |
525 | adapter->npars[pfn].type = pci_info[i].type; | 525 | adapter->npars[pfn].type = (u8)pci_info[i].type; |
526 | adapter->npars[pfn].phy_port = pci_info[i].default_port; | 526 | adapter->npars[pfn].phy_port = (u8)pci_info[i].default_port; |
527 | adapter->npars[pfn].min_bw = pci_info[i].tx_min_bw; | 527 | adapter->npars[pfn].min_bw = pci_info[i].tx_min_bw; |
528 | adapter->npars[pfn].max_bw = pci_info[i].tx_max_bw; | 528 | adapter->npars[pfn].max_bw = pci_info[i].tx_max_bw; |
529 | } | 529 | } |
@@ -723,7 +723,7 @@ qlcnic_initialize_nic(struct qlcnic_adapter *adapter) | |||
723 | if (err) | 723 | if (err) |
724 | return err; | 724 | return err; |
725 | 725 | ||
726 | adapter->physical_port = nic_info.phys_port; | 726 | adapter->physical_port = (u8)nic_info.phys_port; |
727 | adapter->switch_mode = nic_info.switch_mode; | 727 | adapter->switch_mode = nic_info.switch_mode; |
728 | adapter->max_tx_ques = nic_info.max_tx_ques; | 728 | adapter->max_tx_ques = nic_info.max_tx_ques; |
729 | adapter->max_rx_ques = nic_info.max_rx_ques; | 729 | adapter->max_rx_ques = nic_info.max_rx_ques; |
@@ -3762,7 +3762,7 @@ qlcnic_sysfs_read_npar_config(struct file *file, struct kobject *kobj, | |||
3762 | return ret; | 3762 | return ret; |
3763 | 3763 | ||
3764 | np_cfg[i].pci_func = i; | 3764 | np_cfg[i].pci_func = i; |
3765 | np_cfg[i].op_mode = nic_info.op_mode; | 3765 | np_cfg[i].op_mode = (u8)nic_info.op_mode; |
3766 | np_cfg[i].port_num = nic_info.phys_port; | 3766 | np_cfg[i].port_num = nic_info.phys_port; |
3767 | np_cfg[i].fw_capab = nic_info.capabilities; | 3767 | np_cfg[i].fw_capab = nic_info.capabilities; |
3768 | np_cfg[i].min_bw = nic_info.min_tx_bw ; | 3768 | np_cfg[i].min_bw = nic_info.min_tx_bw ; |