[PATCH] timer: fix fsleep function name typo in comment and docs

From: Gitle Mikkelsen

Date: Fri May 01 2026 - 13:09:08 EST


Signed-off-by: Gitle Mikkelsen <gitlem@xxxxxxxxx>
---
include/linux/delay.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/delay.h b/include/linux/delay.h
index 46412c000..68b2a69dd 100644
--- a/include/linux/delay.h
+++ b/include/linux/delay.h
@@ -110,7 +110,7 @@ static const unsigned int max_slack_shift = 2;
* fsleep - flexible sleep which autoselects the best mechanism
* @usecs: requested sleep duration in microseconds
*
- * flseep() selects the best mechanism that will provide maximum 25% slack
+ * fsleep() selects the best mechanism that will provide maximum 25% slack
* to the requested sleep duration. Therefore it uses:
*
* * udelay() loop for sleep durations <= 10 microseconds to avoid hrtimer
--