diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2024-09-27 20:52:29 +0200 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2024-10-07 19:50:54 +0200 |
commit | f62da559d723544672bd4aba2ef91352661f9a1b (patch) | |
tree | 5b335c728a44477f22335eb3d883e865ee357744 /Documentation | |
parent | docs: fix WARNING document not included in any toctree (diff) | |
download | linux-f62da559d723544672bd4aba2ef91352661f9a1b.tar.xz 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
Diffstat (limited to 'Documentation')
-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 |