cpu: Use already existing usleep_range()
authorAnna-Maria Behnsen <anna-maria@linutronix.de>
Wed, 4 Sep 2024 13:04:52 +0000 (15:04 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Sun, 8 Sep 2024 18:47:40 +0000 (20:47 +0200)
usleep_range() is a wrapper arount usleep_range_state() which hands in
TASK_UNTINTERRUPTIBLE as state argument.

Use already exising wrapper usleep_range(). No functional change.

Signed-off-by: Anna-Maria Behnsen <anna-maria@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Frederic Weisbecker <frederic@kernel.org>
Link: https://lore.kernel.org/all/20240904-devel-anna-maria-b4-timers-flseep-v1-2-e98760256370@linutronix.de
kernel/cpu.c

index 1209ddaec026da7f8f27dcde18b526048ddc87a7..031a2c15481b1fece0a51d30caab6c32e560c86b 100644 (file)
@@ -330,7 +330,7 @@ static bool cpuhp_wait_for_sync_state(unsigned int cpu, enum cpuhp_sync_state st
                        /* Poll for one millisecond */
                        arch_cpuhp_sync_state_poll();
                } else {
-                       usleep_range_state(USEC_PER_MSEC, 2 * USEC_PER_MSEC, TASK_UNINTERRUPTIBLE);
+                       usleep_range(USEC_PER_MSEC, 2 * USEC_PER_MSEC);
                }
                sync = atomic_read(st);
        }