Linux Input/HID development
 help / color / mirror / Atom feed
* [PATCH] Input: drv260x - switch to using fsleep()
@ 2026-08-29 12:21 Dmitry Torokhov
  2026-08-29 12:32 ` sashiko-bot
  2026-08-31 19:54 ` Maurizio Casciano
  0 siblings, 2 replies; 3+ messages in thread
From: Dmitry Torokhov @ 2026-08-29 12:21 UTC (permalink / raw)
  To: linux-input; +Cc: Maurizio Casciano, linux-kernel

Switch from udelay() to fsleep() in drv260x_worker() as it runs in a
sleepable workqueue context where busy-waiting is unnecessary.

Assisted-by: LLM
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/input/misc/drv260x.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/input/misc/drv260x.c b/drivers/input/misc/drv260x.c
index 6c5c4c53753b..477ec84ea09b 100644
--- a/drivers/input/misc/drv260x.c
+++ b/drivers/input/misc/drv260x.c
@@ -222,7 +222,7 @@ static void drv260x_worker(struct work_struct *work)
 
 	gpiod_set_value(haptics->enable_gpio, 1);
 	/* Data sheet says to wait 250us before trying to communicate */
-	udelay(250);
+	fsleep(250);
 
 	error = regmap_write(haptics->regmap,
 			     DRV260X_MODE, DRV260X_RT_PLAYBACK);
-- 
2.55.0.897.gb25b4bd76c-goog


-- 
Dmitry

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-08-31 19:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-29 12:21 [PATCH] Input: drv260x - switch to using fsleep() Dmitry Torokhov
2026-08-29 12:32 ` sashiko-bot
2026-08-31 19:54 ` Maurizio Casciano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox