diff options
author | Vadim Yanitskiy <axilirator@gmail.com> | 2019-01-17 12:23:28 +0700 |
---|---|---|
committer | Vadim Yanitskiy <axilirator@gmail.com> | 2019-02-21 17:25:00 +0700 |
commit | 54c80045715fb59030d1f88acc57db1c7e50b02b (patch) | |
tree | 7f90157bf0fbb61cbdb913d647282fa68ee55a57 /src/host/trxcon/l1ctl_link.h | |
parent | 8fdcd52dacb9a020358790318f6c3cdf9906ce14 (diff) |
trxcon: make trxcon_fsm parent for both l1ctl_fsm and trx_fsm
Change-Id: I6262726f2b6e23abe543d6d67edfd634eece1b71
Diffstat (limited to 'src/host/trxcon/l1ctl_link.h')
-rw-r--r-- | src/host/trxcon/l1ctl_link.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/host/trxcon/l1ctl_link.h b/src/host/trxcon/l1ctl_link.h index da64419a..ceeaa308 100644 --- a/src/host/trxcon/l1ctl_link.h +++ b/src/host/trxcon/l1ctl_link.h @@ -41,7 +41,8 @@ struct l1ctl_link { void (*shutdown_cb)(struct l1ctl_link *l1l); }; -struct l1ctl_link *l1ctl_link_init(void *tall_ctx, const char *sock_path); +struct l1ctl_link *l1ctl_link_init(struct osmo_fsm_inst *parent_fi, + const char *sock_path); void l1ctl_link_shutdown(struct l1ctl_link *l1l); int l1ctl_link_send(struct l1ctl_link *l1l, struct msgb *msg); |