Commit ad2b04c1 authored by Thomas Schlichter's avatar Thomas Schlichter

fix compile warning by removing unused variable 'nb_antenna_ports'

parent d7facef8
...@@ -279,7 +279,7 @@ static void *nr_feptx_thread(void *param) { ...@@ -279,7 +279,7 @@ static void *nr_feptx_thread(void *param) {
RU_feptx_t *feptx = (RU_feptx_t *)param; RU_feptx_t *feptx = (RU_feptx_t *)param;
RU_t *ru; RU_t *ru;
int aa, slot, start, l, nb_antenna_ports, ret; int aa, slot, start, l, ret;
int i; int i;
int32_t ***bw; int32_t ***bw;
NR_DL_FRAME_PARMS *fp; NR_DL_FRAME_PARMS *fp;
...@@ -298,7 +298,6 @@ static void *nr_feptx_thread(void *param) { ...@@ -298,7 +298,6 @@ static void *nr_feptx_thread(void *param) {
l = feptx->symbol; l = feptx->symbol;
fp = ru->nr_frame_parms; fp = ru->nr_frame_parms;
start = feptx->symbol; start = feptx->symbol;
nb_antenna_ports = feptx->nb_antenna_ports;
ofdm_mask_full = (1<<(ru->nb_tx*2))-1; ofdm_mask_full = (1<<(ru->nb_tx*2))-1;
if(ru->num_gNB != 0){ if(ru->num_gNB != 0){
......
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