On 2/7/2024 8:19 AM, Arkadiusz Kubalewski wrote:

...

+static bool ice_dpll_is_reset(struct ice_pf *pf, struct netlink_ext_ack 
*extack)
+{
+       if (ice_is_reset_in_progress(pf->state)) {
+               NL_SET_ERR_MSG(extack, "pf reset in progress\n");

As pointed out by cocci:
drivers/net/ethernet/intel/ice/ice_dpll.c:47:25-49: WARNING avoid newline at end of message in NL_SET_ERR_MSG

Since this needs to be updated: s/pf/PF

+               return true;
+       }
+       return false;
+}

Thanks,
Tony

Reply via email to