From 9ec58916d93cc6fcae63c03be4361b8c075ea248 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Wed, 23 Jan 2019 22:48:50 +0700 Subject: 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 --- src/host/layer23/src/mobile/gsm480_ss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- cgit v1.2.3