summaryrefslogtreecommitdiffstats
path: root/flash.h
diff options
context:
space:
mode:
authorStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2011-08-04 17:40:25 +0000
committerStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2011-08-04 17:40:25 +0000
commiteebeb53d65683018eb33cf3710d0cb070c12ef4f (patch)
tree30a51bb526a7a2b996cd94797d87f6df339b056e /flash.h
parentaf882e7e84eb238c166a4c0234aa783768347649 (diff)
downloadast2050-flashrom-eebeb53d65683018eb33cf3710d0cb070c12ef4f.zip
ast2050-flashrom-eebeb53d65683018eb33cf3710d0cb070c12ef4f.tar.gz
Introduce msg_*dbg2
Corresponding to flashrom svn r1404. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Diffstat (limited to 'flash.h')
-rw-r--r--flash.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/flash.h b/flash.h
index 5b49e9d..4b1cca2 100644
--- a/flash.h
+++ b/flash.h
@@ -233,7 +233,8 @@ int print(int type, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
#define MSG_ERROR 0
#define MSG_INFO 1
#define MSG_DEBUG 2
-#define MSG_BARF 3
+#define MSG_DEBUG2 3
+#define MSG_BARF 4
#define msg_gerr(...) print(MSG_ERROR, __VA_ARGS__) /* general errors */
#define msg_perr(...) print(MSG_ERROR, __VA_ARGS__) /* programmer errors */
#define msg_cerr(...) print(MSG_ERROR, __VA_ARGS__) /* chip errors */
@@ -243,6 +244,9 @@ int print(int type, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
#define msg_gdbg(...) print(MSG_DEBUG, __VA_ARGS__) /* general debug */
#define msg_pdbg(...) print(MSG_DEBUG, __VA_ARGS__) /* programmer debug */
#define msg_cdbg(...) print(MSG_DEBUG, __VA_ARGS__) /* chip debug */
+#define msg_gdbg2(...) print(MSG_DEBUG2, __VA_ARGS__) /* general debug2 */
+#define msg_pdbg2(...) print(MSG_DEBUG2, __VA_ARGS__) /* programmer debug2 */
+#define msg_cdbg2(...) print(MSG_DEBUG2, __VA_ARGS__) /* chip debug2 */
#define msg_gspew(...) print(MSG_BARF, __VA_ARGS__) /* general debug barf */
#define msg_pspew(...) print(MSG_BARF, __VA_ARGS__) /* programmer debug barf */
#define msg_cspew(...) print(MSG_BARF, __VA_ARGS__) /* chip debug barf */
OpenPOWER on IntegriCloud