summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/comm/sercomm.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-03-02 18:47:01 +0100
committerHarald Welte <laforge@gnumonks.org>2010-03-02 18:47:01 +0100
commit092d57bef9bd560438993a85e8d04060386d0f4e (patch)
tree39cea97ebf772416cf1cfbab383f8a66b2d3fa5e /src/target/firmware/comm/sercomm.c
parent11c97f5effbb409cdd1c9be21b00de529158401e (diff)
Inter-Layer intergration work
L1 and L2 now pass UI frames like BCCH and CCCH downlink up into L3, which detects an IMMediate ASSignment command and instructs the L1 to switch to SDCCH/4. From this point on, SDCCH/4 and SACCH4/C messages end up in our L2 LAPDm implementation and are forwarded to L3.
Diffstat (limited to 'src/target/firmware/comm/sercomm.c')
-rw-r--r--src/target/firmware/comm/sercomm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/firmware/comm/sercomm.c b/src/target/firmware/comm/sercomm.c
index 1cd0f3b1..7baedcd3 100644
--- a/src/target/firmware/comm/sercomm.c
+++ b/src/target/firmware/comm/sercomm.c
@@ -208,7 +208,7 @@ int sercomm_drv_rx_char(uint8_t ch)
sercomm.rx.msg = sercomm_alloc_msgb(SERCOMM_RX_MSG_SIZE);
if (msgb_tailroom(sercomm.rx.msg) == 0) {
- cons_puts("sercomm_drv_rx_char() overflow!\n");
+ //cons_puts("sercomm_drv_rx_char() overflow!\n");
msgb_free(sercomm.rx.msg);
sercomm.rx.msg = sercomm_alloc_msgb(SERCOMM_RX_MSG_SIZE);
sercomm.rx.state = RX_ST_WAIT_START;