summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-01-23 22:48:50 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2019-01-23 22:52:58 +0700
commit9ec58916d93cc6fcae63c03be4361b8c075ea248 (patch)
tree73bd4489e38a7368956f11d09cd4d8a165cbc769
parent851039cb9b2d1376eb56f5104801a52b14a1b18d (diff)
mobile/gsm480_ss.c: fix build: apply msgb_wrap_with_TL() rename
In If1e851ac605c8d2fde3da565b0bd674ea6350c2e, msgb_wrap_with_TL() was renamed to msgb_push_tl(). Let's use the new symbol name. Change-Id: Ief37424e0ca3cd696054518a0ffb07b7ef17a462
-rw-r--r--src/host/layer23/src/mobile/gsm480_ss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/layer23/src/mobile/gsm480_ss.c b/src/host/layer23/src/mobile/gsm480_ss.c
index 116c72f5..5ff3ce6a 100644
--- a/src/host/layer23/src/mobile/gsm480_ss.c
+++ b/src/host/layer23/src/mobile/gsm480_ss.c
@@ -438,7 +438,7 @@ static int gsm480_tx_invoke(struct gsm_trans *trans, struct msgb *msg,
if (msg_type == GSM0480_MTYPE_FACILITY)
msgb_wrap_with_L(msg);
else
- msgb_wrap_with_TL(msg, GSM0480_IE_FACILITY);
+ msgb_push_tl(msg, GSM0480_IE_FACILITY);
/* FIXME: If phase 2, we need SSVERSION to be added */