mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-msc.git
synced 2025-11-02 21:13:24 +00:00
csd_bs: cosmetic changes to csd_bs_list_to_bearer_cap()
Change-Id: I101f55dfbd0d327269fcce76031a2db265ca2eb9 Related: OS#4394, OS#5730
This commit is contained in:
@@ -432,11 +432,9 @@ int csd_bs_list_to_bearer_cap(struct gsm_mncc_bearer_cap *cap, const struct csd_
|
||||
.coding = GSM48_BCAP_CODING_GSM_STD,
|
||||
.radio = GSM48_BCAP_RRQ_FR_ONLY,
|
||||
};
|
||||
enum csd_bs bs;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < list->count; i++) {
|
||||
bs = list->bs[i];
|
||||
for (unsigned int i = 0; i < list->count; i++) {
|
||||
const enum csd_bs bs = list->bs[i];
|
||||
|
||||
cap->data.rate_adaption = GSM48_BCAP_RA_V110_X30;
|
||||
cap->data.sig_access = GSM48_BCAP_SA_I440_I450;
|
||||
|
||||
Reference in New Issue
Block a user