aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@espeweb.net>2021-02-09 19:41:26 +0100
committerlaforge <laforge@osmocom.org>2021-02-18 00:56:13 +0000
commitcdbd7e3bf29fe39637ed1cc07c6750197ad39444 (patch)
tree26919450c5576080065d25041ae1a8be222afdd2
parent456a962c7ece8537bedcd62e72c00a0d532ef826 (diff)
SI13: Enable sending GPRS Cell Options Extension Information on GPRS-only BTS
The EGPRS bits are anyway conditionally enabled by egprs_supported. Change-Id: Ie7a438419eb416ce3d29794febab5f952661e5c5
-rw-r--r--src/osmo-bsc/system_information.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/system_information.c b/src/osmo-bsc/system_information.c
index 094c35ed7..fae135520 100644
--- a/src/osmo-bsc/system_information.c
+++ b/src/osmo-bsc/system_information.c
@@ -1296,10 +1296,10 @@ int gsm_generate_si(struct gsm_bts *bts, enum osmo_sysinfo_type si_type)
switch (bts->gprs.mode) {
case BTS_GPRS_EGPRS:
- si13_default.cell_opts.ext_info_present = 1;
si13_default.cell_opts.ext_info.egprs_supported = 1;
/* fallthrough */
case BTS_GPRS_GPRS:
+ si13_default.cell_opts.ext_info_present = 1;
si_info.gprs_ind.present = 1;
break;
case BTS_GPRS_NONE: