Commit 4c5be733 authored by Teodora Vladić's avatar Teodora Vladić

Remove `fh_north_out` as not used in NR

Signed-off-by: default avatarTeodora Vladić <teodora.vladic@openairinterface.org>
parent cbe6475a
...@@ -254,10 +254,6 @@ static size_t dump_L1_meas_stats(PHY_VARS_gNB *gNB, RU_t *ru, char *output, size ...@@ -254,10 +254,6 @@ static size_t dump_L1_meas_stats(PHY_VARS_gNB *gNB, RU_t *ru, char *output, size
output += print_meas_log(&ru->tx_fhaul,"tx_fhaul",NULL,NULL, output, end - output); output += print_meas_log(&ru->tx_fhaul,"tx_fhaul",NULL,NULL, output, end - output);
if (ru->fh_north_out) {
output += print_meas_log(&ru->compression,"compression",NULL,NULL, output, end - output);
output += print_meas_log(&ru->transport,"transport",NULL,NULL, output, end - output);
}
return output - begin; return output - begin;
} }
......
...@@ -561,8 +561,6 @@ void ru_tx_func(void *param) ...@@ -561,8 +561,6 @@ void ru_tx_func(void *param)
if (ru->fh_north_asynch_in == NULL && ru->fh_south_out) if (ru->fh_north_asynch_in == NULL && ru->fh_south_out)
ru->fh_south_out(ru, frame_tx, slot_tx, info->timestamp_tx); ru->fh_south_out(ru, frame_tx, slot_tx, info->timestamp_tx);
if (ru->fh_north_out)
ru->fh_north_out(ru);
} }
/* @brief wait for the next RX TTI to be free /* @brief wait for the next RX TTI to be free
...@@ -897,7 +895,6 @@ void set_function_spec_param(RU_t *ru) ...@@ -897,7 +895,6 @@ void set_function_spec_param(RU_t *ru)
ru->feprx = nr_fep_tp; // this is frequency-shift + DFTs ru->feprx = nr_fep_tp; // this is frequency-shift + DFTs
ru->feptx_ofdm = nr_feptx_tp; // this is fep with idft and precoding ru->feptx_ofdm = nr_feptx_tp; // this is fep with idft and precoding
ru->feptx_prec = NULL; ru->feptx_prec = NULL;
ru->fh_north_out = NULL; // no outgoing fronthaul to north
ru->nr_start_if = NULL; // no if interface ru->nr_start_if = NULL; // no if interface
ru->rfdevice.host_type = RAU_HOST; ru->rfdevice.host_type = RAU_HOST;
ru->fh_south_in = rx_rf; // local synchronous RF RX ru->fh_south_in = rx_rf; // local synchronous RF RX
...@@ -929,7 +926,6 @@ void set_function_spec_param(RU_t *ru) ...@@ -929,7 +926,6 @@ void set_function_spec_param(RU_t *ru)
ru->fh_south_in = NULL; ru->fh_south_in = NULL;
ru->fh_south_out = NULL; ru->fh_south_out = NULL;
ru->fh_south_asynch_in = NULL; ru->fh_south_asynch_in = NULL;
ru->fh_north_out = NULL;
ru->fh_north_asynch_in = NULL; ru->fh_north_asynch_in = NULL;
ru->start_rf = NULL; // no local RF ru->start_rf = NULL; // no local RF
ru->stop_rf = NULL; ru->stop_rf = NULL;
......
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