net/ice/base: improve misc code style
Combine a couple of function definitions that can fit on one line. RCT a variable declaration. Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com> Signed-off-by: Paul M Stillwell Jr <paul.m.stillwell.jr@intel.com> Signed-off-by: Qi Zhang <qi.z.zhang@intel.com> Acked-by: Qiming Yang <qiming.yang@intel.com>
This commit is contained in:
parent
5479b0aff7
commit
93b59ccf12
@ -2131,8 +2131,7 @@ ice_ptg_find_ptype(struct ice_hw *hw, enum ice_block blk, u16 ptype, u8 *ptg)
|
||||
* This function allocates a given packet type group ID specified by the ptg
|
||||
* parameter.
|
||||
*/
|
||||
static
|
||||
void ice_ptg_alloc_val(struct ice_hw *hw, enum ice_block blk, u8 ptg)
|
||||
static void ice_ptg_alloc_val(struct ice_hw *hw, enum ice_block blk, u8 ptg)
|
||||
{
|
||||
hw->blk[blk].xlt1.ptg_tbl[ptg].in_use = true;
|
||||
}
|
||||
@ -3286,8 +3285,7 @@ static const u32 ice_blk_sids[ICE_BLK_COUNT][ICE_SID_OFF_COUNT] = {
|
||||
* @hw: pointer to the hardware structure
|
||||
* @blk: the HW block to initialize
|
||||
*/
|
||||
static
|
||||
void ice_init_sw_xlt1_db(struct ice_hw *hw, enum ice_block blk)
|
||||
static void ice_init_sw_xlt1_db(struct ice_hw *hw, enum ice_block blk)
|
||||
{
|
||||
u16 pt;
|
||||
|
||||
|
@ -65,8 +65,7 @@ enum ice_status
|
||||
ice_add_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
|
||||
enum ice_status
|
||||
ice_rem_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
|
||||
enum ice_status
|
||||
ice_init_pkg(struct ice_hw *hw, u8 *buff, u32 len);
|
||||
enum ice_status ice_init_pkg(struct ice_hw *hw, u8 *buff, u32 len);
|
||||
enum ice_status
|
||||
ice_copy_and_init_pkg(struct ice_hw *hw, const u8 *buf, u32 len);
|
||||
enum ice_status ice_init_hw_tbls(struct ice_hw *hw);
|
||||
|
@ -260,8 +260,8 @@ enum ice_status ice_read_sr_word(struct ice_hw *hw, u16 offset, u16 *data)
|
||||
*/
|
||||
enum ice_status ice_init_nvm(struct ice_hw *hw)
|
||||
{
|
||||
struct ice_nvm_info *nvm = &hw->nvm;
|
||||
u16 oem_hi, oem_lo, boot_cfg_tlv, boot_cfg_tlv_len;
|
||||
struct ice_nvm_info *nvm = &hw->nvm;
|
||||
u16 eetrack_lo, eetrack_hi;
|
||||
enum ice_status status;
|
||||
u32 fla, gens_stat;
|
||||
|
Loading…
x
Reference in New Issue
Block a user