From 79d2f44e65ecd68a9e200e266d7cca4a471a62af Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Thu, 27 Oct 2022 14:27:22 +0200 Subject: [PATCH] abis_rsl: be more clear about vendor specif RSL extension The function rsl_ericsson_imm_assign_cmd has a comment "Chapter 8.5.6" above it. However, thats only half true. The function implements ericsson vendor specific RSL IEs, so lets be more clear about this in the spec reference. Change-Id: Id27662e208ca8ac0a48851583c11fbacf85f988c --- src/osmo-bsc/abis_rsl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmo-bsc/abis_rsl.c b/src/osmo-bsc/abis_rsl.c index 304e95ce3..bb1c5d6e8 100644 --- a/src/osmo-bsc/abis_rsl.c +++ b/src/osmo-bsc/abis_rsl.c @@ -963,7 +963,7 @@ int rsl_imm_assign_cmd(struct gsm_bts *bts, uint8_t len, uint8_t *val) return abis_rsl_sendmsg(msg); } -/* Chapter 8.5.6 */ +/* Chapter 8.5.6 Immediate Assignment Command (with Ericcson vendor specific RSL extension) */ int rsl_ericsson_imm_assign_cmd(struct gsm_bts *bts, uint32_t tlli, uint8_t len, uint8_t *val) { struct msgb *msg = rsl_imm_assign_cmd_common(bts, len, val);