aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/pcu_sock.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-12-18 23:58:27 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-12-20 19:01:27 +0100
commit9bd5afa0146285e596f0c1172a6a4920a1c8597a (patch)
tree0e554cd76b7bb0100c0f1bb400a957d73ef0bd4f /src/common/pcu_sock.c
parent8d8ff80890ef6538b0340311b1bb3fc58e9c7e8d (diff)
misc: Include pcu_if.h for pcu_tx_pag_req in rsl.c and make it const
The rsl.c code was calling the paging request with a const pointer, change the signature to make the code const.
Diffstat (limited to 'src/common/pcu_sock.c')
-rw-r--r--src/common/pcu_sock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/pcu_sock.c b/src/common/pcu_sock.c
index da5a95ec..55015486 100644
--- a/src/common/pcu_sock.c
+++ b/src/common/pcu_sock.c
@@ -389,7 +389,7 @@ int pcu_tx_time_ind(uint32_t fn)
return pcu_sock_send(&bts_gsmnet, msg);
}
-int pcu_tx_pag_req(uint8_t *identity_lv, uint8_t chan_needed)
+int pcu_tx_pag_req(const uint8_t *identity_lv, uint8_t chan_needed)
{
struct pcu_sock_state *state = bts_gsmnet.pcu_state;
struct msgb *msg;