Message ID | 20220312095823.2425775-1-niklas.soderlund@corigine.com (mailing list archive) |
---|---|
State | Accepted |
Commit | bdd6a89de44b9e07d0b106076260d2367fe0e49a |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] nfp: flower: avoid newline at the end of message in NL_SET_ERR_MSG_MOD | expand |
Hello: This patch was applied to netdev/net-next.git (master) by Jakub Kicinski <kuba@kernel.org>: On Sat, 12 Mar 2022 10:58:23 +0100 you wrote: > Fix the following coccicheck warning: > > drivers/net/ethernet/netronome/nfp/flower/action.c:959:7-69: WARNING avoid newline at end of message in NL_SET_ERR_MSG_MOD > > Signed-off-by: Niklas Söderlund <niklas.soderlund@corigine.com> > Signed-off-by: Simon Horman <simon.horman@corigine.com> > > [...] Here is the summary with links: - [net-next] nfp: flower: avoid newline at the end of message in NL_SET_ERR_MSG_MOD https://git.kernel.org/netdev/net-next/c/bdd6a89de44b You are awesome, thank you!
diff --git a/drivers/net/ethernet/netronome/nfp/flower/action.c b/drivers/net/ethernet/netronome/nfp/flower/action.c index 2c40a3959f94da31..1b9421e844a95e2c 100644 --- a/drivers/net/ethernet/netronome/nfp/flower/action.c +++ b/drivers/net/ethernet/netronome/nfp/flower/action.c @@ -956,7 +956,7 @@ nfp_flower_meter_action(struct nfp_app *app, meter_id = action->hw_index; if (!nfp_flower_search_meter_entry(app, meter_id)) { NL_SET_ERR_MSG_MOD(extack, - "can not offload flow table with unsupported police action.\n"); + "can not offload flow table with unsupported police action."); return -EOPNOTSUPP; }