aboutsummaryrefslogtreecommitdiffstats
path: root/src/gsm/rsl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gsm/rsl.c')
-rw-r--r--src/gsm/rsl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gsm/rsl.c b/src/gsm/rsl.c
index 83097fdf..2a2af1f7 100644
--- a/src/gsm/rsl.c
+++ b/src/gsm/rsl.c
@@ -202,6 +202,9 @@ int rsl_dec_chan_nr(uint8_t chan_nr, uint8_t *type, uint8_t *subch, uint8_t *tim
} else if ((chan_nr & 0xf8) == RSL_CHAN_PCH_AGCH) {
*type = RSL_CHAN_PCH_AGCH;
*subch = 0;
+ } else if ((chan_nr & 0xf8) == RSL_CHAN_OSMO_PDCH) {
+ *type = RSL_CHAN_OSMO_PDCH;
+ *subch = 0;
} else
return -EINVAL;