diff options
author | Jiapeng Chong <jiapeng.chong@linux.alibaba.com> | 2022-03-07 14:25:54 +0800 |
---|---|---|
committer | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2022-03-10 09:27:55 -0600 |
commit | b359b3a0296a8a9c853c7ee98f9728942d7f0f4e (patch) | |
tree | 0a6edc3fc128a4e487edf4b95d256ae6743d8698 /arch/x86/xen | |
parent | eed05744322da07dd7e419432dcedf3c2e017179 (diff) | |
download | linux-b359b3a0296a8a9c853c7ee98f9728942d7f0f4e.tar.gz linux-b359b3a0296a8a9c853c7ee98f9728942d7f0f4e.tar.bz2 linux-b359b3a0296a8a9c853c7ee98f9728942d7f0f4e.zip |
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 <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Link: https://lore.kernel.org/r/20220307062554.8334-1-jiapeng.chong@linux.alibaba.com
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Diffstat (limited to 'arch/x86/xen')
-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) { |