[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20241225123222.444891-2-thorsten.blum@linux.dev>
Date: Wed, 25 Dec 2024 13:32:20 +0100
From: Thorsten Blum <thorsten.blum@...ux.dev>
To: Dmitry Torokhov <dmitry.torokhov@...il.com>,
Thorsten Blum <thorsten.blum@...ux.dev>,
Erick Archer <erick.archer@...look.com>
Cc: linux-input@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [RESEND PATCH] Input: joystick - use str_off_on() helper in sw_connect()
Remove hard-coded strings by using the str_off_on() helper.
Signed-off-by: Thorsten Blum <thorsten.blum@...ux.dev>
---
drivers/input/joystick/sidewinder.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/input/joystick/sidewinder.c b/drivers/input/joystick/sidewinder.c
index f6e92db4d789..3a5873e5fcb3 100644
--- a/drivers/input/joystick/sidewinder.c
+++ b/drivers/input/joystick/sidewinder.c
@@ -14,6 +14,7 @@
#include <linux/input.h>
#include <linux/gameport.h>
#include <linux/jiffies.h>
+#include <linux/string_choices.h>
#define DRIVER_DESC "Microsoft SideWinder joystick family driver"
@@ -677,7 +678,7 @@ static int sw_connect(struct gameport *gameport, struct gameport_driver *drv)
case 48: /* Ambiguous */
if (j == 14) { /* ID length 14*3 -> FFP */
sw->type = SW_ID_FFP;
- sprintf(comment, " [AC %s]", sw_get_bits(idbuf,38,1,3) ? "off" : "on");
+ sprintf(comment, " [AC %s]", str_off_on(sw_get_bits(idbuf,38,1,3)));
} else
sw->type = SW_ID_PP;
break;
--
2.47.1
Powered by blists - more mailing lists