net/ice/base: use malloc instead of calloc
Use *malloc() instead of *calloc() when allocating only a single object as opposed to an array of objects. Signed-off-by: Bruce Allan <bruce.w.allan@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
bd885ab120
commit
323e51eb25
@ -3366,8 +3366,7 @@ ice_create_vsi_list_map(struct ice_hw *hw, u16 *vsi_handle_arr, u16 num_vsi,
|
||||
struct ice_vsi_list_map_info *v_map;
|
||||
int i;
|
||||
|
||||
v_map = (struct ice_vsi_list_map_info *)ice_calloc(hw, 1,
|
||||
sizeof(*v_map));
|
||||
v_map = (struct ice_vsi_list_map_info *)ice_malloc(hw, sizeof(*v_map));
|
||||
if (!v_map)
|
||||
return NULL;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user