Commit af2c6b76 authored by Robert Schmidt's avatar Robert Schmidt

Remove unused callbacks, function declaration, make function static

parent 60b0c182
...@@ -150,14 +150,6 @@ void oai_xran_fh_rx_callback(void *pCallbackTag, xran_status_t status) ...@@ -150,14 +150,6 @@ void oai_xran_fh_rx_callback(void *pCallbackTag, xran_status_t status)
last_frame = frame; last_frame = frame;
} // rx_sym == 7 } // rx_sym == 7
} }
void oai_xran_fh_srs_callback(void *pCallbackTag, xran_status_t status)
{
rte_pause();
}
void oai_xran_fh_rx_prach_callback(void *pCallbackTag, xran_status_t status)
{
rte_pause();
}
int oai_physide_dl_tti_call_back(void *param) int oai_physide_dl_tti_call_back(void *param)
{ {
...@@ -167,19 +159,7 @@ int oai_physide_dl_tti_call_back(void *param) ...@@ -167,19 +159,7 @@ int oai_physide_dl_tti_call_back(void *param)
return 0; return 0;
} }
int oai_physide_ul_half_slot_call_back(void *param) static int read_prach_data(ru_info_t *ru, int frame, int slot)
{
rte_pause();
return 0;
}
int oai_physide_ul_full_slot_call_back(void *param)
{
rte_pause();
return 0;
}
int read_prach_data(ru_info_t *ru, int frame, int slot)
{ {
/* calculate tti and subframe_id from frame, slot num */ /* calculate tti and subframe_id from frame, slot num */
int sym_idx = 0; int sym_idx = 0;
......
...@@ -48,6 +48,4 @@ typedef struct ru_info_s { ...@@ -48,6 +48,4 @@ typedef struct ru_info_s {
int xran_fh_rx_read_slot(ru_info_t *ru, int *frame, int *slot); int xran_fh_rx_read_slot(ru_info_t *ru, int *frame, int *slot);
int xran_fh_tx_send_slot(ru_info_t *ru, int frame, int slot, uint64_t timestamp); int xran_fh_tx_send_slot(ru_info_t *ru, int frame, int slot, uint64_t timestamp);
int compute_xran_statistics();
#endif /* _ORAN_ISOLATE_H_ */ #endif /* _ORAN_ISOLATE_H_ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment