fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/30052 )
Change subject: trxcon: add missing imports to trxcon.h ......................................................................
trxcon: add missing imports to trxcon.h
Change-Id: I0fa507e80a638ca7ed2ff421303e9722b33e20ea Related: OS#5599 --- M src/host/trxcon/include/osmocom/bb/trxcon/trxcon.h 1 file changed, 5 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved
diff --git a/src/host/trxcon/include/osmocom/bb/trxcon/trxcon.h b/src/host/trxcon/include/osmocom/bb/trxcon/trxcon.h index 117f3fd..b553fe4 100644 --- a/src/host/trxcon/include/osmocom/bb/trxcon/trxcon.h +++ b/src/host/trxcon/include/osmocom/bb/trxcon/trxcon.h @@ -1,5 +1,10 @@ #pragma once
+#include <stdint.h> +#include <stdbool.h> + +#include <osmocom/core/fsm.h> + struct l1sched_state;
extern struct osmo_fsm trxcon_fsm_def;