diff options
author | 2025-05-16 17:40:31 +0000 | |
---|---|---|
committer | 2025-05-21 10:48:24 -0700 | |
commit | 85915c6cabf74d1f693fd09d95c25d838b82c840 (patch) | |
tree | db3477de01b25531021ed70e284662249e8bd24c | |
parent | mailmap: update and consolidate Casey Connolly's name and email (diff) | |
download | linux-rng-85915c6cabf74d1f693fd09d95c25d838b82c840.tar.xz linux-rng-85915c6cabf74d1f693fd09d95c25d838b82c840.zip |
kernel/panic.c: format kernel-doc comments
kernel-doc function comment don't follows documentation commenting style
misinterpreting arguments description with function description.
Please see latest docs generated before applying this patch
https://docs.kernel.org/driver-api/basics.html#c.panic
Link: https://lkml.kernel.org/r/20250516174031.2937-1-sravankumarlpu@gmail.com
Signed-off-by: Sravan Kumar Gundu <sravankumarlpu@gmail.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: John Ogness <john.ogness@linutronix.de>
Cc: Petr Mladek <pmladek@suse.com>
Cc: Shuah Khan <shuah@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r-- | kernel/panic.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/kernel/panic.c b/kernel/panic.c index a3889f38153d..1f52922d1b2e 100644 --- a/kernel/panic.c +++ b/kernel/panic.c @@ -277,12 +277,10 @@ static void panic_other_cpus_shutdown(bool crash_kexec) } /** - * panic - halt the system - * @fmt: The text string to print + * panic - halt the system + * @fmt: The text string to print * - * Display a message, then perform cleanups. - * - * This function never returns. + * Display a message, then perform cleanups. This function never returns. */ void panic(const char *fmt, ...) { |