diff options
author | Costa Shulyupin <[email protected]> | 2024-03-25 18:38:10 +0200 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2024-06-17 15:17:44 +0200 |
commit | f45a6051d582f613f4abc383ae238661f7813302 (patch) | |
tree | 26c4a95542d99687fed133d19311e8c8b2f5466b | |
parent | 6ba59ff4227927d3a8530fc2973b80e94b54d58f (diff) |
cpu/hotplug: Fix typo in comment
Signed-off-by: Costa Shulyupin <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | include/linux/cpuhotplug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cpuhotplug.h b/include/linux/cpuhotplug.h index 7a5785f405b6..7f6c820c12eb 100644 --- a/include/linux/cpuhotplug.h +++ b/include/linux/cpuhotplug.h @@ -27,7 +27,7 @@ * startup callbacks sequentially from CPUHP_OFFLINE + 1 to CPUHP_ONLINE * during a CPU online operation. During a CPU offline operation the * installed teardown callbacks are invoked in the reverse order from - * CPU_ONLINE - 1 down to CPUHP_OFFLINE. + * CPUHP_ONLINE - 1 down to CPUHP_OFFLINE. * * The state space has three sections: PREPARE, STARTING and ONLINE. * |