aboutsummaryrefslogtreecommitdiffstats
path: root/src/pdch.h
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-12-23 13:19:25 +0100
committerlaforge <laforge@osmocom.org>2020-01-01 16:10:15 +0000
commitfbfab297eec45b79adf40985380c91d70de0abe6 (patch)
treeff0f9a9f8539235a4f1db3af6d2952ffcb39fde6 /src/pdch.h
parentdb12f254ce466dc66411c5be43664d06e8dc673d (diff)
Split identity_lv param into mi+mi_len
It's not really needed to have those together in some function calls, and makes it more difficult to follow the code. Furthermore, new callers not having content already aligned (len+value) will be using these functions in forthcoming commits. Change-Id: Ifb9d3997bfb74b35366c3d1bc51ce458f19abf16
Diffstat (limited to 'src/pdch.h')
-rw-r--r--src/pdch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdch.h b/src/pdch.h
index d55f58e1..821fb901 100644
--- a/src/pdch.h
+++ b/src/pdch.h
@@ -48,7 +48,7 @@ struct gprs_rlcmac_pdch {
struct gprs_rlcmac_paging *dequeue_paging();
struct msgb *packet_paging_request();
- bool add_paging(uint8_t chan_needed, uint8_t *identity_lv);
+ bool add_paging(uint8_t chan_needed, const uint8_t *mi, uint8_t mi_len);
void free_resources();