From: Helin Zhang Date: Tue, 9 Sep 2014 07:21:31 +0000 (+0800) Subject: i40e/base: get rid of sparse warnings X-Git-Tag: spdx-start~10335 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=d0a51bf9f95f994ee8af496d8a769ebe1a5760e6;p=dpdk.git i40e/base: get rid of sparse warnings There are variables that represent values in little endian. Adding prefix of '__Le' can remove warnings during sparse checks. In addition, remove some unreachable 'break' statements, and add 'UL' on a couple of constants. Signed-off-by: Helin Zhang Reviewed-by: Chen Jing Tested-by: HuilongX Xu --- diff --git a/lib/librte_pmd_i40e/i40e/i40e_lan_hmc.c b/lib/librte_pmd_i40e/i40e/i40e_lan_hmc.c index 9f98d6da89..b08534bf66 100644 --- a/lib/librte_pmd_i40e/i40e/i40e_lan_hmc.c +++ b/lib/librte_pmd_i40e/i40e/i40e_lan_hmc.c @@ -424,7 +424,6 @@ enum i40e_status_code i40e_create_lan_hmc_object(struct i40e_hw *hw, default: ret_code = I40E_ERR_INVALID_SD_TYPE; goto exit; - break; } } } @@ -509,7 +508,6 @@ try_type_paged: DEBUGOUT1("i40e_configure_lan_hmc: Unknown SD type: %d\n", ret_code); goto configure_lan_hmc_out; - break; } /* Configure and program the FPM registers so objects can be created */ @@ -803,9 +801,10 @@ static void i40e_write_word(u8 *hmc_bits, struct i40e_context_ele *ce_info, u8 *src) { - u16 src_word, dest_word, mask; + u16 src_word, mask; u8 *from, *dest; u16 shift_width; + __le16 dest_word; /* copy from the next struct field */ from = src + ce_info->offset; @@ -846,9 +845,10 @@ static void i40e_write_dword(u8 *hmc_bits, struct i40e_context_ele *ce_info, u8 *src) { - u32 src_dword, dest_dword, mask; + u32 src_dword, mask; u8 *from, *dest; u16 shift_width; + __le32 dest_dword; /* copy from the next struct field */ from = src + ce_info->offset; @@ -897,9 +897,10 @@ static void i40e_write_qword(u8 *hmc_bits, struct i40e_context_ele *ce_info, u8 *src) { - u64 src_qword, dest_qword, mask; + u64 src_qword, mask; u8 *from, *dest; u16 shift_width; + __le64 dest_qword; /* copy from the next struct field */ from = src + ce_info->offset; @@ -914,7 +915,7 @@ static void i40e_write_qword(u8 *hmc_bits, if (ce_info->width < 64) mask = ((u64)1 << ce_info->width) - 1; else - mask = 0xFFFFFFFFFFFFFFFF; + mask = 0xFFFFFFFFFFFFFFFFUL; /* don't swizzle the bits until after the mask because the mask bits * will be in a different bit position on big endian machines @@ -985,9 +986,10 @@ static void i40e_read_word(u8 *hmc_bits, struct i40e_context_ele *ce_info, u8 *dest) { - u16 src_word, dest_word, mask; + u16 dest_word, mask; u8 *src, *target; u16 shift_width; + __le16 src_word; /* prepare the bits and mask */ shift_width = ce_info->lsb % 8; @@ -1028,9 +1030,10 @@ static void i40e_read_dword(u8 *hmc_bits, struct i40e_context_ele *ce_info, u8 *dest) { - u32 src_dword, dest_dword, mask; + u32 dest_dword, mask; u8 *src, *target; u16 shift_width; + __le32 src_dword; /* prepare the bits and mask */ shift_width = ce_info->lsb % 8; @@ -1080,9 +1083,10 @@ static void i40e_read_qword(u8 *hmc_bits, struct i40e_context_ele *ce_info, u8 *dest) { - u64 src_qword, dest_qword, mask; + u64 dest_qword, mask; u8 *src, *target; u16 shift_width; + __le64 src_qword; /* prepare the bits and mask */ shift_width = ce_info->lsb % 8; @@ -1094,7 +1098,7 @@ static void i40e_read_qword(u8 *hmc_bits, if (ce_info->width < 64) mask = ((u64)1 << ce_info->width) - 1; else - mask = 0xFFFFFFFFFFFFFFFF; + mask = 0xFFFFFFFFFFFFFFFFUL; /* shift to correct alignment */ mask <<= shift_width; diff --git a/lib/librte_pmd_i40e/i40e/i40e_lan_hmc.h b/lib/librte_pmd_i40e/i40e/i40e_lan_hmc.h index f0f0f8967c..70ef65cb99 100644 --- a/lib/librte_pmd_i40e/i40e/i40e_lan_hmc.h +++ b/lib/librte_pmd_i40e/i40e/i40e_lan_hmc.h @@ -36,7 +36,6 @@ POSSIBILITY OF SUCH DAMAGE. /* forward-declare the HW struct for the compiler */ struct i40e_hw; -enum i40e_status_code; /* HMC element context information */