Commit 43939a7c authored by rmagueta's avatar rmagueta

Revert "Fix infinite loop in fill_dci_search_candidates"

This reverts commit e8f67b9401b303a5f51bb593719e85603bc8b74d.
parent 9a3d577e
......@@ -56,7 +56,7 @@ void fill_dci_search_candidates(NR_SearchSpace_t *ss,fapi_nr_dl_config_dci_dl_pd
uint8_t aggregation;
uint8_t number_of_candidates=0;
int i=0;
for (int maxL=16;maxL>0;maxL=maxL>>1) {
for (int maxL=16;maxL>0;maxL>>1) {
find_aggregation_candidates(&aggregation,
&number_of_candidates,
ss,maxL);
......
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