[PATCH] Documentation: core-api/cpuhotplug: Fix missing prefix

Lucas De Marchi posted 1 patch 2 months ago
Documentation/core-api/cpu_hotplug.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] Documentation: core-api/cpuhotplug: Fix missing prefix
Posted by Lucas De Marchi 2 months ago
Add the missing cpuhp_ prefix in cpuhp_remove_multi_state().

Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
 Documentation/core-api/cpu_hotplug.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/core-api/cpu_hotplug.rst b/Documentation/core-api/cpu_hotplug.rst
index dcb0e379e5e8..33e8e80b5e00 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
-- 
2.46.1
Re: [PATCH] Documentation: core-api/cpuhotplug: Fix missing prefix
Posted by Jonathan Corbet 1 month, 3 weeks ago
Lucas De Marchi <lucas.demarchi@intel.com> writes:

> Add the missing cpuhp_ prefix in cpuhp_remove_multi_state().
>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
>  Documentation/core-api/cpu_hotplug.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/core-api/cpu_hotplug.rst b/Documentation/core-api/cpu_hotplug.rst
> index dcb0e379e5e8..33e8e80b5e00 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);

Applied, thanks.

jon