aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-04-27 18:33:26 +0200
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-04-29 13:32:04 +0300
commit4cbc2acde83f3a9be2e2d35c7c89d5ea780d81be (patch)
tree6ec8a44eb12ede83d25934cc2f258db624760446
parente1782698902165e9a29c2c392b405675b4f60f02 (diff)
pcu_sock: comment out {dl,ul}_tbf_ext related warnings
The gitlog shows that these warnings were added in 744f745d7a508605254afa8f78412ad410d153b0 by jolly (in 2012!). As nobody has bothered for the past ten years, degrade them to comments. Change-Id: Iebf9961cffbd7aa20b263f7dc0016a44782dec60 Related: osmo-bsc.git I9ef7e18f56aa86b48f0ffeec58406260736170f3
-rw-r--r--src/common/pcu_sock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/pcu_sock.c b/src/common/pcu_sock.c
index 9d0d87c5..980ed139 100644
--- a/src/common/pcu_sock.c
+++ b/src/common/pcu_sock.c
@@ -314,9 +314,9 @@ int pcu_tx_info_ind(void)
info_ind->flags |= PCU_IF_FLAG_MCS8;
if (rlcc->cs_mask & (1 << GPRS_MCS9))
info_ind->flags |= PCU_IF_FLAG_MCS9;
-#warning "isn't dl_tbf_ext wrong?: * 10 and no ntohs"
+ /* FIXME: isn't dl_tbf_ext wrong?: * 10 and no ntohs */
info_ind->dl_tbf_ext = rlcc->parameter[T_DL_TBF_EXT];
-#warning "isn't ul_tbf_ext wrong?: * 10 and no ntohs"
+ /* FIXME: isn't ul_tbf_ext wrong?: * 10 and no ntohs */
info_ind->ul_tbf_ext = rlcc->parameter[T_UL_TBF_EXT];
info_ind->initial_cs = rlcc->initial_cs;
info_ind->initial_mcs = rlcc->initial_mcs;