aboutsummaryrefslogtreecommitdiffstats
path: root/src/tbf_ul.h
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-07-27 12:27:08 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2021-08-23 17:14:22 +0200
commit6ad11a6990df9587ed8c54931d65254a087e4ac6 (patch)
tree8d3a618348a0e7e17c914a95752b5d6b437ee68b /src/tbf_ul.h
parentb0ead922a1dda63cd30eb238c6f03e988a459f7a (diff)
Replace ul_ass_state with osmocom FSM
Diffstat (limited to 'src/tbf_ul.h')
-rw-r--r--src/tbf_ul.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tbf_ul.h b/src/tbf_ul.h
index 2bc908d9..d5cfbd5a 100644
--- a/src/tbf_ul.h
+++ b/src/tbf_ul.h
@@ -50,8 +50,6 @@ enum tbf_egprs_ul_counters {
/* Used in ul_tbf->m_usf[] to flag unassigned USF on a given TS: */
#define USF_INVALID 0xFF
-#define LOGPTBFUL(tbf, level, fmt, args...) LOGP(DTBFUL, level, "%s " fmt, tbf_name(tbf), ## args)
-
struct gprs_rlcmac_ul_tbf : public gprs_rlcmac_tbf {
gprs_rlcmac_ul_tbf(struct gprs_rlcmac_bts *bts, GprsMs *ms);
~gprs_rlcmac_ul_tbf();
@@ -139,6 +137,8 @@ void update_tbf_ta(struct gprs_rlcmac_ul_tbf *tbf, int8_t ta_delta);
void set_tbf_ta(struct gprs_rlcmac_ul_tbf *tbf, uint8_t ta);
struct gprs_rlcmac_ul_tbf *as_ul_tbf(struct gprs_rlcmac_tbf *tbf);
void tbf_usf_timeout(struct gprs_rlcmac_ul_tbf *tbf);
+
+#define LOGPTBFUL(tbf, level, fmt, args...) LOGP(DTBFUL, level, "%s " fmt, tbf_name(tbf), ## args)
#ifdef __cplusplus
}
#endif