diff options
author | Yue Haibing <[email protected]> | 2024-08-16 18:22:19 +0800 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2024-08-25 16:07:51 +0200 |
commit | cc5e03f3be3154f860c9d08b2ac8c139863e1515 (patch) | |
tree | 8d1c4a4a46738650aef367b839533234b2c65284 | |
parent | b51207dc02ec3aeaa849e419f79055d7334845b6 (diff) |
x86/extable: Remove unused declaration fixup_bug()
Commit 15a416e8aaa7 ("x86/entry: Treat BUG/WARN as NMI-like entries")
removed the implementation but left the declaration.
Signed-off-by: Yue Haibing <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Link: https://lore.kernel.org/all/[email protected]
-rw-r--r-- | arch/x86/include/asm/extable.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/include/asm/extable.h b/arch/x86/include/asm/extable.h index eeed395c3177..a0e0c6b50155 100644 --- a/arch/x86/include/asm/extable.h +++ b/arch/x86/include/asm/extable.h @@ -37,7 +37,6 @@ struct pt_regs; extern int fixup_exception(struct pt_regs *regs, int trapnr, unsigned long error_code, unsigned long fault_addr); -extern int fixup_bug(struct pt_regs *regs, int trapnr); extern int ex_get_fixup_type(unsigned long ip); extern void early_fixup_exception(struct pt_regs *regs, int trapnr); |