aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2017-10-02 12:31:05 +0200
committerAndreas Eversberg <jolly@eversberg.eu>2017-10-02 12:34:35 +0200
commitc645ef9c14751a607e6eba91fb41fcd06ce62ec1 (patch)
tree9dbc8f8278350e8057b4f13f6ca6dbc9f97193e9 /src
parent1a4a08386c28ae76339386c5bd7e3be34cf9d9ff (diff)
R2000: Use correct debug category
Diffstat (limited to 'src')
-rw-r--r--src/r2000/r2000.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/r2000/r2000.c b/src/r2000/r2000.c
index 3405870..53ff4ae 100644
--- a/src/r2000/r2000.c
+++ b/src/r2000/r2000.c
@@ -513,24 +513,24 @@ void r2000_check_channels(void)
}
if (cc && !tc) {
if (note)
- PDEBUG(DNMT, DEBUG_NOTICE, "\n");
- PDEBUG(DNMT, DEBUG_NOTICE, "*** Selected channel(s) can be used for control only.\n");
- PDEBUG(DNMT, DEBUG_NOTICE, "*** No call from the mobile phone is possible on this channel.\n");
- PDEBUG(DNMT, DEBUG_NOTICE, "*** Use combined 'CC/TC' instead!\n");
+ PDEBUG(DR2000, DEBUG_NOTICE, "\n");
+ PDEBUG(DR2000, DEBUG_NOTICE, "*** Selected channel(s) can be used for control only.\n");
+ PDEBUG(DR2000, DEBUG_NOTICE, "*** No call from the mobile phone is possible on this channel.\n");
+ PDEBUG(DR2000, DEBUG_NOTICE, "*** Use combined 'CC/TC' instead!\n");
note = 1;
}
if (tc && !cc) {
if (note)
- PDEBUG(DNMT, DEBUG_NOTICE, "\n");
- PDEBUG(DNMT, DEBUG_NOTICE, "*** Selected channel(s) can be used for traffic only.\n");
- PDEBUG(DNMT, DEBUG_NOTICE, "*** No call is possible at all!\n");
- PDEBUG(DNMT, DEBUG_NOTICE, "*** Use combined 'CC/TC' instead!\n");
+ PDEBUG(DR2000, DEBUG_NOTICE, "\n");
+ PDEBUG(DR2000, DEBUG_NOTICE, "*** Selected channel(s) can be used for traffic only.\n");
+ PDEBUG(DR2000, DEBUG_NOTICE, "*** No call is possible at all!\n");
+ PDEBUG(DR2000, DEBUG_NOTICE, "*** Use combined 'CC/TC' instead!\n");
note = 1;
}
if (combined) {
if (note)
- PDEBUG(DNMT, DEBUG_NOTICE, "\n");
- PDEBUG(DNMT, DEBUG_NOTICE, "*** Selected combined 'CC/TC' some phones might reject this.\n");
+ PDEBUG(DR2000, DEBUG_NOTICE, "\n");
+ PDEBUG(DR2000, DEBUG_NOTICE, "*** Selected combined 'CC/TC' some phones might reject this.\n");
note = 1;
}
}