diff options
| author | Daniel Sneddon <[email protected]> | 2024-12-19 15:52:27 +0000 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2025-02-25 22:12:58 +0000 |
| commit | 0f6750b15ffdf274668b12824b09bd49ea854e18 (patch) | |
| tree | d0dbf432beea6c6a875b2e19fdd0dba6ccaa9b15 /arch/x86/entry/common.c | |
| parent | x86/irq: Define trace events conditionally (diff) | |
| download | kernel-0f6750b15ffdf274668b12824b09bd49ea854e18.tar.gz kernel-0f6750b15ffdf274668b12824b09bd49ea854e18.zip | |
x86/entry: Fix kernel-doc warning
The do_int80_emulation() function is missing a kernel-doc formatted
description of its argument. This is causing a warning when building
with W=1. Add a brief description of the argument to satisfy
kernel-doc.
Reported-by: kernel test robot <[email protected]>
Signed-off-by: Daniel Sneddon <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Diffstat (limited to 'arch/x86/entry/common.c')
| -rw-r--r-- | arch/x86/entry/common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/entry/common.c b/arch/x86/entry/common.c index 94941c5a10ac..14db5b85114c 100644 --- a/arch/x86/entry/common.c +++ b/arch/x86/entry/common.c @@ -190,6 +190,7 @@ static __always_inline bool int80_is_external(void) /** * do_int80_emulation - 32-bit legacy syscall C entry from asm + * @regs: syscall arguments in struct pt_args on the stack. * * This entry point can be used by 32-bit and 64-bit programs to perform * 32-bit system calls. Instances of INT $0x80 can be found inline in |
