aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2009-08-18 12:54:50 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-11-20 13:06:44 +0100
commit32201c50a53aa7981628bef14388067bc3706bf0 (patch)
treef539f0ba27c4c748a2b5e24a2de249e7b209fb2b
parented0a47b9c5569a8b13566d2dd77da223d456277f (diff)
[debug] Add a debug area for MSC
-rw-r--r--openbsc/include/openbsc/debug.h1
-rw-r--r--openbsc/src/debug.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/debug.h b/openbsc/include/openbsc/debug.h
index 24f45add7..c8c0013d9 100644
--- a/openbsc/include/openbsc/debug.h
+++ b/openbsc/include/openbsc/debug.h
@@ -21,6 +21,7 @@
#define DINP 0x8000
#define DSCCP 0x10000
+#define DMSC 0x20000
#ifdef DEBUG
#define DEBUGP(ss, fmt, args...) debugp(ss, __FILE__, __LINE__, 0, fmt, ## args)
diff --git a/openbsc/src/debug.c b/openbsc/src/debug.c
index 14d6b603e..f88a90475 100644
--- a/openbsc/src/debug.c
+++ b/openbsc/src/debug.c
@@ -58,6 +58,7 @@ static const struct debug_info debug_info[] = {
DEBUG_CATEGORY(DMUX, "DMUX", "", "")
DEBUG_CATEGORY(DMEAS, "DMEAS", "", "")
DEBUG_CATEGORY(DSCCP, "DSCCP", "", "")
+ DEBUG_CATEGORY(DMSC, "DMSC", "", "")
};
static int use_color = 1;