[PATCH net-next] net: sched: etf: Use str_on_off() helper function in etf_init()

From: Thorsten Blum
Date: Sun Oct 20 2024 - 06:49:09 EST


Remove hard-coded strings by using the helper function str_on_off().

Signed-off-by: Thorsten Blum <thorsten.blum@xxxxxxxxx>
---
net/sched/sch_etf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/sched/sch_etf.c b/net/sched/sch_etf.c
index c74d778c32a1..c62730f5df4c 100644
--- a/net/sched/sch_etf.c
+++ b/net/sched/sch_etf.c
@@ -369,8 +369,8 @@ static int etf_init(struct Qdisc *sch, struct nlattr *opt,

pr_debug("delta %d clockid %d offload %s deadline %s\n",
qopt->delta, qopt->clockid,
- OFFLOAD_IS_ON(qopt) ? "on" : "off",
- DEADLINE_MODE_IS_ON(qopt) ? "on" : "off");
+ str_on_off(OFFLOAD_IS_ON(qopt)),
+ str_on_off(DEADLINE_MODE_IS_ON(qopt)));

err = validate_input_params(qopt, extack);
if (err < 0)
--
2.47.0