diff options
author | Alex Shi <alex.shi@linux.alibaba.com> | 2020-11-13 11:58:14 +0300 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2020-11-27 15:43:09 +0300 |
commit | 638920a66a17c8e1f4415cbab0d49dc4a344c2a7 (patch) | |
tree | 9015a5df9e04492055035f7a5ec52abdf10e9f37 /arch/x86/pci | |
parent | 8539d3f06710a9e91b9968fa736549d7c6b44206 (diff) | |
download | linux-638920a66a17c8e1f4415cbab0d49dc4a344c2a7.tar.xz |
x86/PCI: Make a kernel-doc comment a normal one
The comment is using kernel-doc markup but that comment isn't a
kernel-doc comment so make it a normal one to avoid:
arch/x86/pci/i386.c:373: warning: Function parameter or member \
'pcibios_assign_resources' not described in 'fs_initcall'
[ bp: Massage and fixup comment while at it. ]
Signed-off-by: Alex Shi <alex.shi@linux.alibaba.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/1605257895-5536-5-git-send-email-alex.shi@linux.alibaba.com
Diffstat (limited to 'arch/x86/pci')
-rw-r--r-- | arch/x86/pci/i386.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/pci/i386.c b/arch/x86/pci/i386.c index fa855bbaebaf..f2f4a5d50b27 100644 --- a/arch/x86/pci/i386.c +++ b/arch/x86/pci/i386.c @@ -366,9 +366,9 @@ static int __init pcibios_assign_resources(void) return 0; } -/** - * called in fs_initcall (one below subsys_initcall), - * give a chance for motherboard reserve resources +/* + * This is an fs_initcall (one below subsys_initcall) in order to reserve + * resources properly. */ fs_initcall(pcibios_assign_resources); |