diff options
author | 2024-09-27 11:52:29 -0700 | |
---|---|---|
committer | 2024-10-07 11:50:54 -0600 | |
commit | f62da559d723544672bd4aba2ef91352661f9a1b (patch) | |
tree | 5b335c728a44477f22335eb3d883e865ee357744 | |
parent | docs: fix WARNING document not included in any toctree (diff) | |
download | wireguard-linux-f62da559d723544672bd4aba2ef91352661f9a1b.tar.xz wireguard-linux-f62da559d723544672bd4aba2ef91352661f9a1b.zip |
Documentation: core-api/cpuhotplug: Fix missing prefix
Add the missing cpuhp_ prefix in cpuhp_remove_multi_state().
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20240927185229.2362599-1-lucas.demarchi@intel.com
-rw-r--r-- | Documentation/core-api/cpu_hotplug.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/core-api/cpu_hotplug.rst b/Documentation/core-api/cpu_hotplug.rst index a21dbf261be7..e1b0eeabbb5e 100644 --- a/Documentation/core-api/cpu_hotplug.rst +++ b/Documentation/core-api/cpu_hotplug.rst @@ -616,7 +616,7 @@ ONLINE section for notifications on online and offline operation:: .... cpuhp_remove_instance(state, &inst2->node); .... - remove_multi_state(state); + cpuhp_remove_multi_state(state); Testing of hotplug states |