aboutsummaryrefslogtreecommitdiffstats
path: root/src/bts.h
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-12-09 17:39:56 +0100
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-12-16 19:57:09 +0100
commit554a835e906419ff5b4b773b3a723a3fa2e15611 (patch)
treeaea05f16a4899a878df4f57bbd7733bbb3cb3f4e /src/bts.h
parent39c6c7f738439197fd13636e9a9ea6ca192f7b4e (diff)
edge: Use a single PDCH rcv_data_block method for GPRS and EGPRS
Currently GPRS is handled by the old code path while EGPRS already uses the unified functions. The rcv_block_egprs is basically not specific to EGPRS and just needs minor modifications to handle GPRS. This commit turns gprs_rlcmac_pdch::rcv_block_egprs into a unified rcv_data_block method and uses it for GPRS, too. Note that the logging messages of the new parser are different. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/bts.h')
-rw-r--r--src/bts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bts.h b/src/bts.h
index 51df5a3..4867ac0 100644
--- a/src/bts.h
+++ b/src/bts.h
@@ -66,7 +66,7 @@ struct gprs_rlcmac_pdch {
struct pcu_l1_meas *meas);
int rcv_block_gprs(uint8_t *data, uint32_t fn,
struct pcu_l1_meas *meas, GprsCodingScheme cs);
- int rcv_block_egprs(uint8_t *data, uint32_t fn,
+ int rcv_data_block(uint8_t *data, uint32_t fn,
struct pcu_l1_meas *meas, GprsCodingScheme cs);
gprs_rlcmac_bts *bts_data() const;