 5209f08dc8
			
		
	
	
	5209f08dc8
	
	
	
		
			
			Impact: build fix DIE_OOPS is now used in the generic trace handling code so it needs to be defined for all architectures. Define it in asm-generic so that it's available to all by default and doesn't cause build errors for architectures that rely on the generic implementation. Signed-off-by: Jonas Bonn <jonas.bonn@gmail.com> Acked-by: Steven Rostedt <srostedt@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			140 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			140 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _ASM_GENERIC_KDEBUG_H
 | |
| #define _ASM_GENERIC_KDEBUG_H
 | |
| 
 | |
| enum die_val {
 | |
| 	DIE_UNUSED,
 | |
| 	DIE_OOPS=1
 | |
| };
 | |
| 
 | |
| #endif /* _ASM_GENERIC_KDEBUG_H */
 |