From: Jonas Bonn Date: Sat, 25 Oct 2008 09:49:20 +0000 (+0200) Subject: asm-generic: define DIE_OOPS in asm-generic X-Git-Tag: v2.6.28-rc3~86^2~5 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=5209f08dc8e5f520ca81b87fa9a7142f58a109f4;p=linux-2.6-omap-h63xx.git 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 Acked-by: Steven Rostedt Signed-off-by: Ingo Molnar --- diff --git a/include/asm-generic/kdebug.h b/include/asm-generic/kdebug.h index 2b799c90b2d..11e57b6a85f 100644 --- a/include/asm-generic/kdebug.h +++ b/include/asm-generic/kdebug.h @@ -3,6 +3,7 @@ enum die_val { DIE_UNUSED, + DIE_OOPS=1 }; #endif /* _ASM_GENERIC_KDEBUG_H */