summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/src/misc
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2010-09-14 21:19:38 +0200
committerSylvain Munaut <tnt@246tNt.com>2010-09-17 20:52:41 +0200
commit54b77bc07ea86ecc4b86e604d3798b441c13b463 (patch)
treea01fb9c8e5258a324a115b469b2fc8c19aa16154 /src/host/layer23/src/misc
parentf0873b81fedbc0aed27886c9e158ef2a30f9935d (diff)
fw & layer23: Remove limitation about the SDCCH subchannel 4..8
This is now supported :) Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'src/host/layer23/src/misc')
-rw-r--r--src/host/layer23/src/misc/layer3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/host/layer23/src/misc/layer3.c b/src/host/layer23/src/misc/layer3.c
index 74d48eb3..8716a8a8 100644
--- a/src/host/layer23/src/misc/layer3.c
+++ b/src/host/layer23/src/misc/layer3.c
@@ -207,7 +207,7 @@ static int gsm48_rx_imm_ass(struct msgb *msg, struct osmocom_ms *ms)
ia->chan_desc.chan_nr, arfcn, ch_ts, ch_subch,
ia->chan_desc.h0.tsc);
- if (ch_ts >= 4 || ch_subch >= 4) {
+ if (ch_ts >= 4) {
DEBUGPC(DRR, "UNSUPPORTED!\n");
return 0;
}
@@ -242,7 +242,7 @@ static int gsm48_rx_imm_ass(struct msgb *msg, struct osmocom_ms *ms)
}
}
- if (ch_ts >= 4 || ch_subch >= 4) {
+ if (ch_ts >= 4) {
DEBUGPC(DRR, "UNSUPPORTED!\n");
return 0;
}