diff options
author | Vadim Yanitskiy <vyanitskiy@sysmocom.de> | 2020-10-20 02:11:05 +0700 |
---|---|---|
committer | Vadim Yanitskiy <vyanitskiy@sysmocom.de> | 2020-10-20 02:24:14 +0700 |
commit | 8fc43df69fe00c25a325ef6c5892f3b2cc389ed7 (patch) | |
tree | 3c77d3ec7e4ddbc5458c857c64406755a677f2f6 /library | |
parent | ac693462dd58e2b505252b6ab15d37664323e340 (diff) |
library/RSL_Types: reorder the arguments of ts_RSL_ChanMode_SIGN
This way it's consistent with ts_RSL_ChanMode, and there is
no need to pass dtx_downlink := false as the first param.
Change-Id: I0b87ef87f8cfff1c96b0beead29d549d5fe0b7c6
Diffstat (limited to 'library')
-rw-r--r-- | library/RSL_Types.ttcn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/RSL_Types.ttcn b/library/RSL_Types.ttcn index ff60a37..2bbbd3b 100644 --- a/library/RSL_Types.ttcn +++ b/library/RSL_Types.ttcn @@ -397,8 +397,8 @@ module RSL_Types { RSL_SpeechAlgo coding_alg_rate } with { variant (len) "LENGTHTO(reserved,dtx_d,dtx_u,spd_ind,ch_rate_type,coding_alg_rate)" } - template (value) RSL_IE_ChannelMode ts_RSL_ChanMode_SIGN(boolean dtx_downlink := false, - RSL_ChanRateType t := RSL_CHRT_SDCCH) := { + template (value) RSL_IE_ChannelMode ts_RSL_ChanMode_SIGN(RSL_ChanRateType t := RSL_CHRT_SDCCH, + boolean dtx_downlink := false) := { len := 0, /* overwritten */ reserved := '000000'B, dtx_d := dtx_downlink, |