Skip to content

Commit

Permalink
x86/mce: Get rid of stray semicolons
Browse files Browse the repository at this point in the history
and the random number of tabs.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20210908132525.154428878@linutronix.de
  • Loading branch information
Thomas Gleixner authored and Borislav Petkov committed Sep 13, 2021
1 parent e42404a commit 083b32d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/kernel/cpu/mce/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static inline void cmci_disable_bank(int bank) { }
static inline void intel_init_cmci(void) { }
static inline void intel_init_lmce(void) { }
static inline void intel_clear_lmce(void) { }
static inline bool intel_filter_mce(struct mce *m) { return false; };
static inline bool intel_filter_mce(struct mce *m) { return false; }
#endif

void mce_timer_kick(unsigned long interval);
Expand Down Expand Up @@ -183,7 +183,7 @@ extern bool filter_mce(struct mce *m);
#ifdef CONFIG_X86_MCE_AMD
extern bool amd_filter_mce(struct mce *m);
#else
static inline bool amd_filter_mce(struct mce *m) { return false; };
static inline bool amd_filter_mce(struct mce *m) { return false; }
#endif

__visible bool ex_handler_rdmsr_fault(const struct exception_table_entry *fixup,
Expand Down

0 comments on commit 083b32d

Please sign in to comment.