On 10/23/2023 9:29 AM, Ivan Vecera wrote:
> +/**
> + * i40e_is_aq_api_ver_ge
> + * @hw: pointer to i40e_hw structure
> + * @maj: API major value to compare
> + * @min: API minor value to compare
> + *
> + * Assert whether current HW API version is greater/equal than provided.
> + **/
> +static inline bool i40e_is_aq_api_ver_ge(struct i40e_hw *hw, u16 maj, u16 
> min)
> +{
> +        return (hw->aq.api_maj_ver > maj ||
> +             (hw->aq.api_maj_ver == maj && hw->aq.api_min_ver >= min));
> +}

Checkpatch.pl complained here that this was using spaces instead of a
tab to indent.

Thanks,
Jake
_______________________________________________
Intel-wired-lan mailing list
[email protected]
https://lists.osuosl.org/mailman/listinfo/intel-wired-lan

Reply via email to