Message ID | 20241015121300.1601108-1-roheetchavan@gmail.com (mailing list archive) |
---|---|
State | Rejected |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | octeontx2-af: Use str_enabled_disabled() | expand |
On Tue, 15 Oct 2024 17:43:00 +0530 Rohit Chavan wrote:
> Use str_enabled_disabled() helper instead of open coding the same.
I think this falls under clean ups, please see:
https://www.kernel.org/doc/html/next/process/maintainer-netdev.html#clean-up-patches
diff --git a/drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c b/drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c index 7498ab429963..5d09cb56e67a 100644 --- a/drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c +++ b/drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c @@ -1251,7 +1251,7 @@ static int rvu_af_npc_exact_feature_get(struct devlink *devlink, u32 id, enabled = rvu_npc_exact_has_match_table(rvu); snprintf(ctx->val.vstr, sizeof(ctx->val.vstr), "%s", - enabled ? "enabled" : "disabled"); + str_enabled_disabled(enabled)); return 0; }
Use str_enabled_disabled() helper instead of open coding the same. Signed-off-by: Rohit Chavan <roheetchavan@gmail.com> --- drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)