Message ID | 20230612115334.8262-1-przemyslaw.kitszel@intel.com (mailing list archive) |
---|---|
State | Awaiting Upstream |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [iwl-next] ice: fix VSI LUT size flag | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Guessing tree name failed - patch did not apply |
diff --git a/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h b/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h index 6ea0d4c017f0..acea49007f2a 100644 --- a/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h +++ b/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h @@ -1819,7 +1819,7 @@ enum ice_lut_size { * LUT size and LUT type, last of which does not need neither shift nor mask. */ enum ice_aqc_lut_flags { - ICE_AQC_LUT_SIZE_SMALL = BIT(1), /* size = 64 or 128 */ + ICE_AQC_LUT_SIZE_SMALL = 0, /* size = 64 or 128 */ ICE_AQC_LUT_SIZE_512 = BIT(2), ICE_AQC_LUT_SIZE_2K = BIT(3),