Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86/idtentry: Add missing '*' to kernel-doc lines

Fix kernel-doc warnings by adding the missing '*' to each line.

Warning: include/asm/idtentry.h:395 bad line: when raised from kernel mode
Warning: include/asm/idtentry.h:405 bad line: when raised from user mode

Since this is in a kernel-doc block, these lines need a leading
" *" on each line to prevent the warnings.

Fixes: a13644f3a53d ("x86/entry/64: Add entry code for #VC handler")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>

authored by

Randy Dunlap and committed by
Borislav Petkov (AMD)
762a3d1c 3a866087

+2 -2
+2 -2
arch/x86/include/asm/idtentry.h
··· 393 393 394 394 /** 395 395 * DEFINE_IDTENTRY_VC_KERNEL - Emit code for VMM communication handler 396 - when raised from kernel mode 396 + * when raised from kernel mode 397 397 * @func: Function name of the entry point 398 398 * 399 399 * Maps to DEFINE_IDTENTRY_RAW_ERRORCODE ··· 403 403 404 404 /** 405 405 * DEFINE_IDTENTRY_VC_USER - Emit code for VMM communication handler 406 - when raised from user mode 406 + * when raised from user mode 407 407 * @func: Function name of the entry point 408 408 * 409 409 * Maps to DEFINE_IDTENTRY_RAW_ERRORCODE