Attention is currently required from: laforge, pespin.
1 comment:
File src/common/rsl.c:
Patch Set #1, Line 2059: lchan->ms_power_ctrl.current = lchan->ms_power_ctrl.max;
Before, we were doing it in the branch TLVP_PRES_LEN() ...
```
/* Initialize MS Power Control defaults */
lchan->ms_power_ctrl = (struct lchan_power_ctrl_state) {
.max = ms_pwr_ctl_lvl(lchan->ts->trx->bts->band, 0),
.current = lchan->ms_power_ctrl.max,
};
```
As explained in COMMIT_MSG, the intention was to set `current = max`.
Before `75162427ad26b9834433757b790a29f4995b9b60`, it was done as follows:
```
/* Initialize MS Power Control defaults */
lchan->ms_power_ctrl.max = ms_pwr_ctl_lvl(lchan->ts->trx->bts->band, 0);
lchan->ms_power_ctrl.current = lchan->ms_power_ctrl.max;
lchan->ms_power_ctrl.fixed = true;
```
To view, visit change 39830. To unsubscribe, or for help writing mail filters, visit settings.