]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ARM: 9334/1: mm: init: remove misuse of kernel-doc comment
authorRandy Dunlap <rdunlap@infradead.org>
Sun, 14 Jan 2024 05:30:34 +0000 (06:30 +0100)
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Sat, 24 Feb 2024 16:47:18 +0000 (16:47 +0000)
Change the "/**" beginning of comment to the common "/*" comment
since the comment is not in kernel-doc format. This prevents a
kernel-doc warning:

arch/arm/mm/init.c:422: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
 * update_sections_early intended to be called only through stop_machine

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: linux-arm-kernel@lists.infradead.org
Cc: patches@armlinux.org.uk
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
arch/arm/mm/init.c

index a42e4cd11db2949875814e23cb21e8a3203ace60..4634db84c5af4ade4533b17b7af1ba3911cea5dc 100644 (file)
@@ -418,7 +418,7 @@ static void set_section_perms(struct section_perm *perms, int n, bool set,
 
 }
 
-/**
+/*
  * update_sections_early intended to be called only through stop_machine
  * framework and executed by only one CPU while all other CPUs will spin and
  * wait, so no locking is required in this function.