fixeria submitted this change.

View Change

Approvals: pespin: Looks good to me, but someone else must approve osmith: Looks good to me, approved Jenkins Builder: Verified fixeria: Verified
system_information: fix DCS/PCS band indicator in generate_si6()

Change-Id: Iaa8377919a144e7f3799b76249f579c8f3874145
---
M src/osmo-bsc/system_information.c
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/osmo-bsc/system_information.c b/src/osmo-bsc/system_information.c
index bedba3a..27c60a0 100644
--- a/src/osmo-bsc/system_information.c
+++ b/src/osmo-bsc/system_information.c
@@ -1190,7 +1190,7 @@
gsm48_set_dtx(&si6->cell_options, bts->dtxu, bts->dtxu, false);

/* SI6 Rest Octets: 10.5.2.35a: PCH / NCH info, VBS/VGCS options */
- si6_ro_info.band_indicator_1900 = is_dcs_net(bts);
+ si6_ro_info.band_indicator_1900 = !is_dcs_net(bts);
rc = osmo_gsm48_rest_octets_si6_encode(si6->rest_octets, &si6_ro_info);

return l2_plen + rc;

To view, visit change 27386. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: Iaa8377919a144e7f3799b76249f579c8f3874145
Gerrit-Change-Number: 27386
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: laforge <laforge@osmocom.org>
Gerrit-Reviewer: osmith <osmith@sysmocom.de>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>
Gerrit-MessageType: merged