From c645ef9c14751a607e6eba91fb41fcd06ce62ec1 Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Mon, 2 Oct 2017 12:31:05 +0200 Subject: [PATCH] R2000: Use correct debug category --- src/r2000/r2000.c | 20 ++++++++++---------- 1 file 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; } }