>From: Nguyen, Anthony L <[email protected]> >Sent: Friday, February 9, 2024 7:52 PM > >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 >
Sure, did in v2. Thank you! Arkadiusz >> + return true; >> + } >> + return false; >> +} > >Thanks, >Tony
