Skip to content

Commit 704ae09

Browse files
arndbKAGA-KOKO
authored andcommitted
x86/mce: Add notifier_block forward declaration
Without linux/irq.h, there is no declaration of notifier_block, leading to a build warning: In file included from arch/x86/kernel/cpu/mcheck/threshold.c:10: arch/x86/include/asm/mce.h:151:46: error: 'struct notifier_block' declared inside parameter list will not be visible outside of this definition or declaration [-Werror] It's sufficient to declare the struct tag here, which avoids pulling in more header files. Fixes: 447ae31 ("x86: Don't include linux/irq.h from asm/hardirq.h") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Nicolai Stange <nstange@suse.de> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Borislav Petkov <bp@suse.de> Link: https://lkml.kernel.org/r/20180817100156.3009043-1-arnd@arndb.de
1 parent 2e549b2 commit 704ae09

File tree

1 file changed

+1
-0
lines changed
  • arch/x86/include/asm

1 file changed

+1
-0
lines changed

arch/x86/include/asm/mce.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ enum mce_notifier_prios {
148148
MCE_PRIO_LOWEST = 0,
149149
};
150150

151+
struct notifier_block;
151152
extern void mce_register_decode_chain(struct notifier_block *nb);
152153
extern void mce_unregister_decode_chain(struct notifier_block *nb);
153154

0 commit comments

Comments
 (0)