diff options
Diffstat (limited to 'include/linux/kernel.h')
-rw-r--r-- | include/linux/kernel.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 2651f805ba6d..8017129e6b63 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -240,6 +240,18 @@ extern const char *print_tainted(void); | |||
240 | extern void add_taint(unsigned); | 240 | extern void add_taint(unsigned); |
241 | extern int root_mountflags; | 241 | extern int root_mountflags; |
242 | 242 | ||
243 | #ifdef CONFIG_X86_CHECK_BIOS_CORRUPTION | ||
244 | /* | ||
245 | * This is obviously not a great place for this, but we want to be | ||
246 | * able to scatter it around anywhere in the kernel. | ||
247 | */ | ||
248 | void check_for_bios_corruption(void); | ||
249 | #else | ||
250 | static inline void check_for_bios_corruption(void) | ||
251 | { | ||
252 | } | ||
253 | #endif | ||
254 | |||
243 | /* Values used for system_state */ | 255 | /* Values used for system_state */ |
244 | extern enum system_states { | 256 | extern enum system_states { |
245 | SYSTEM_BOOTING, | 257 | SYSTEM_BOOTING, |