diff options
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_switch.h')
| -rw-r--r-- | drivers/net/ethernet/intel/ice/ice_switch.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/drivers/net/ethernet/intel/ice/ice_switch.h b/drivers/net/ethernet/intel/ice/ice_switch.h index 6f4a0d159dbf..9b8ec128ee31 100644 --- a/drivers/net/ethernet/intel/ice/ice_switch.h +++ b/drivers/net/ethernet/intel/ice/ice_switch.h @@ -17,7 +17,7 @@ struct ice_vsi_ctx {  	u16 vsis_unallocated;  	u16 flags;  	struct ice_aqc_vsi_props info; -	bool alloc_from_pool; +	u8 alloc_from_pool;  };  enum ice_sw_fwd_act_type { @@ -94,8 +94,8 @@ struct ice_fltr_info {  	u8 qgrp_size;  	/* Rule creations populate these indicators basing on the switch type */ -	bool lb_en;	/* Indicate if packet can be looped back */ -	bool lan_en;	/* Indicate if packet can be forwarded to the uplink */ +	u8 lb_en;	/* Indicate if packet can be looped back */ +	u8 lan_en;	/* Indicate if packet can be forwarded to the uplink */  };  /* Bookkeeping structure to hold bitmap of VSIs corresponding to VSI list id */ |