diff options
| author | Jiapeng Chong <[email protected]> | 2022-03-07 14:25:54 +0800 |
|---|---|---|
| committer | Boris Ostrovsky <[email protected]> | 2022-03-10 09:27:55 -0600 |
| commit | b359b3a0296a8a9c853c7ee98f9728942d7f0f4e (patch) | |
| tree | 0a6edc3fc128a4e487edf4b95d256ae6743d8698 | |
| parent | eed05744322da07dd7e419432dcedf3c2e017179 (diff) | |
x86/xen: Fix kerneldoc warning
Fix the following W=1 kernel warnings:
arch/x86/xen/setup.c:725: warning: expecting prototype for
machine_specific_memory_setup(). Prototype was for xen_memory_setup()
instead.
Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Jiapeng Chong <[email protected]>
Reviewed-by: Boris Ostrovsky <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Boris Ostrovsky <[email protected]>
| -rw-r--r-- | arch/x86/xen/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c index af216feb63d9..81aa46f770c5 100644 --- a/arch/x86/xen/setup.c +++ b/arch/x86/xen/setup.c @@ -719,7 +719,7 @@ static void __init xen_reserve_xen_mfnlist(void) } /** - * machine_specific_memory_setup - Hook for machine specific memory setup. + * xen_memory_setup - Hook for machine specific memory setup. **/ char * __init xen_memory_setup(void) { |