aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-11-22 13:45:16 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2022-11-22 16:05:09 +0100
commit27096140117767c46a702e439b7ae97459fb79e9 (patch)
tree68fe83e1170ffee9d35a0c690660d758106f5a2c /include
parentae07416208fccd1b4e06d5deaacb51f244238390 (diff)
paging: Get rid of unneeded count returned
The return count is not used since there's no use for it. Get rid of it to simplify the code. Change-Id: I7bf04b94173f0ae7b26caf5d7f9abeeb9abf9b6c
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/bsc/paging.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/bsc/paging.h b/include/osmocom/bsc/paging.h
index a0b5bcbeb..bd84f248b 100644
--- a/include/osmocom/bsc/paging.h
+++ b/include/osmocom/bsc/paging.h
@@ -126,9 +126,9 @@ void paging_destructor(struct gsm_bts *bts);
/* schedule paging request */
int paging_request_bts(const struct bsc_paging_params *params, struct gsm_bts *bts);
-int paging_request_stop(struct bsc_msc_data **msc_p, enum bsc_paging_reason *reasons_p,
+void paging_request_stop(struct bsc_msc_data **msc_p, enum bsc_paging_reason *reasons_p,
struct gsm_bts *bts, struct bsc_subscr *bsub);
-int paging_request_cancel(struct bsc_subscr *bsub, enum bsc_paging_reason reasons);
+void paging_request_cancel(struct bsc_subscr *bsub, enum bsc_paging_reason reasons);
/* update paging load */
void paging_update_buffer_space(struct gsm_bts *bts, uint16_t);