The unified diff between revisions [4f22e7ef..] and [9ca449dd..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'panic.h'

#
# old_revision [4f22e7ef7d3064e3b51a5b868a4722f3f13c747b]
# new_revision [9ca449dd7941ad52e33bdcb5c28b2ba35d54219a]
#
# patch "panic.h"
#  from [4ed7a80d4d14e77a557b91a5dcc39e621f765d6e]
#    to [b263e2768b03feb4970bdeedf75a8ff0de240894]
#
============================================================
--- panic.h	4ed7a80d4d14e77a557b91a5dcc39e621f765d6e
+++ panic.h	b263e2768b03feb4970bdeedf75a8ff0de240894
@@ -6,3 +6,11 @@ void panic(unsigned int reason);
 
 /* Panic code goes in the low 8 bits */
 #define PANIC_WATCHDOG_TIMEOUT 0x100
+#define PANIC_SENSOR_FAIL 0x200
+
+#ifdef PANIC_CHECKPOINT
+extern unsigned int checkpoint;
+#define CHECKPOINT(x) do { checkpoint = (x); } while (0)
+#else
+#define CHECKPOINT(x)
+#endif