Commit 5209f08dc8e5f520ca81b87fa9a7142f58a109f4

Authored by Jonas Bonn
Committed by Ingo Molnar
1 parent e2862c9470

asm-generic: define DIE_OOPS in asm-generic

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>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

include/asm-generic/kdebug.h
... ... @@ -3,6 +3,7 @@
3 3  
4 4 enum die_val {
5 5 DIE_UNUSED,
  6 + DIE_OOPS=1
6 7 };
7 8  
8 9 #endif /* _ASM_GENERIC_KDEBUG_H */