neels has submitted this change. ( https://gerrit.osmocom.org/c/osmo-hnbgw/+/32616 )
Change subject: drop empty hnbgw_rua_init() ......................................................................
drop empty hnbgw_rua_init()
Change-Id: I8e3ff452242d8baa527c2a61d182bbe9786341e3 --- M include/osmocom/hnbgw/hnbgw_rua.h M src/osmo-hnbgw/hnbgw_rua.c 2 files changed, 9 insertions(+), 7 deletions(-)
Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified
diff --git a/include/osmocom/hnbgw/hnbgw_rua.h b/include/osmocom/hnbgw/hnbgw_rua.h index 4b65115..1526f11 100644 --- a/include/osmocom/hnbgw/hnbgw_rua.h +++ b/include/osmocom/hnbgw/hnbgw_rua.h @@ -4,7 +4,6 @@ #include <osmocom/rua/RUA_Cause.h>
int hnbgw_rua_rx(struct hnb_context *hnb, struct msgb *msg); -int hnbgw_rua_init(void);
int rua_tx_udt(struct hnb_context *hnb, const uint8_t *data, unsigned int len); int rua_tx_dt(struct hnb_context *hnb, int is_ps, uint32_t context_id, diff --git a/src/osmo-hnbgw/hnbgw_rua.c b/src/osmo-hnbgw/hnbgw_rua.c index 5e68e32..a8dc458 100644 --- a/src/osmo-hnbgw/hnbgw_rua.c +++ b/src/osmo-hnbgw/hnbgw_rua.c @@ -540,9 +540,3 @@
return rc; } - - -int hnbgw_rua_init(void) -{ - return 0; -}