aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/kernel.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h
index 2651f805ba6d..50873b211788 100644
--- a/include/linux/kernel.h
+++ b/include/linux/kernel.h
@@ -240,6 +240,23 @@ extern const char *print_tainted(void);
240extern void add_taint(unsigned); 240extern void add_taint(unsigned);
241extern int root_mountflags; 241extern 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 */
248void check_for_bios_corruption(void);
249void start_periodic_check_for_corruption(void);
250#else
251static inline void check_for_bios_corruption(void)
252{
253}
254
255static inline void start_periodic_check_for_corruption(void)
256{
257}
258#endif
259
243/* Values used for system_state */ 260/* Values used for system_state */
244extern enum system_states { 261extern enum system_states {
245 SYSTEM_BOOTING, 262 SYSTEM_BOOTING,