If a header file is making use of BUG, BUG_ON, BUILD_BUG_ON, or any other BUG variant in a static inline (i.e. not in a #define) then that header really should be including <linux/bug.h> and not just expecting it to be implicitly present. We can make this change risk-free, since if the files using these headers didn't have exposure to linux/bug.h already, they would have been causing compile failures/warnings. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			446 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			446 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef __ASM_GENERIC_TLBFLUSH_H
 | 
						|
#define __ASM_GENERIC_TLBFLUSH_H
 | 
						|
/*
 | 
						|
 * This is a dummy tlbflush implementation that can be used on all
 | 
						|
 * nommu architectures.
 | 
						|
 * If you have an MMU, you need to write your own functions.
 | 
						|
 */
 | 
						|
#ifdef CONFIG_MMU
 | 
						|
#error need to implement an architecture specific asm/tlbflush.h
 | 
						|
#endif
 | 
						|
 | 
						|
#include <linux/bug.h>
 | 
						|
 | 
						|
static inline void flush_tlb_mm(struct mm_struct *mm)
 | 
						|
{
 | 
						|
	BUG();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
#endif /* __ASM_GENERIC_TLBFLUSH_H */
 |