Commit 3768723c authored by Robert Schmidt's avatar Robert Schmidt

remove unnecessary comments

parent ceece569
...@@ -541,7 +541,6 @@ schedule_dlsch(module_id_t module_idP, ...@@ -541,7 +541,6 @@ schedule_dlsch(module_id_t module_idP,
} }
// Run each enabled slice-specific schedulers one by one // Run each enabled slice-specific schedulers one by one
/* TODO Navid took out the dl_info additional information */
slice_sched_dl[i](module_idP, i, frameP, subframeP, mbsfn_flag/*, dl_info*/); slice_sched_dl[i](module_idP, i, frameP, subframeP, mbsfn_flag/*, dl_info*/);
} }
......
...@@ -38,23 +38,18 @@ ...@@ -38,23 +38,18 @@
/** /**
* slice specific scheduler * slice specific scheduler
*/ */
/* TODO Navid: Protocol__FlexranMessage -> unknown when compiling without
* FlexRAN, what to do with it? Matches schedule_ue_spec now */
typedef void (*slice_scheduler_dl)(module_id_t mod_id, typedef void (*slice_scheduler_dl)(module_id_t mod_id,
slice_id_t slice_id, slice_id_t slice_id,
frame_t frame, frame_t frame,
sub_frame_t subframe, sub_frame_t subframe,
int *mbsfn_flag int *mbsfn_flag);
/* Protocol__FlexranMessage **dl_info*/);
/* TODO Navid: the same as above, matches schedule_ulsch_rnti now */
typedef void (*slice_scheduler_ul)(module_id_t mod_id, typedef void (*slice_scheduler_ul)(module_id_t mod_id,
slice_id_t slice_id, slice_id_t slice_id,
frame_t frame, frame_t frame,
sub_frame_t subframe, sub_frame_t subframe,
unsigned char sched_subframe, unsigned char sched_subframe,
uint16_t *first_rb uint16_t *first_rb);
/* Protocol__FlexranMessage **ul_info*/);
/** \fn void schedule_mib(module_id_t module_idP,frame_t frameP,sub_frame_t subframe); /** \fn void schedule_mib(module_id_t module_idP,frame_t frameP,sub_frame_t subframe);
\brief MIB scheduling for PBCH. This function requests the MIB from RRC and provides it to L1. \brief MIB scheduling for PBCH. This function requests the MIB from RRC and provides it to L1.
......
...@@ -3362,7 +3362,6 @@ rrc_eNB_generate_defaultRRCConnectionReconfiguration(const protocol_ctxt_t* cons ...@@ -3362,7 +3362,6 @@ rrc_eNB_generate_defaultRRCConnectionReconfiguration(const protocol_ctxt_t* cons
} }
#if defined(FLEXRAN_AGENT_SB_IF) #if defined(FLEXRAN_AGENT_SB_IF)
/* TODO Navid: does this belong here? */
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
void void
flexran_rrc_eNB_generate_defaultRRCConnectionReconfiguration(const protocol_ctxt_t* const ctxt_pP, flexran_rrc_eNB_generate_defaultRRCConnectionReconfiguration(const protocol_ctxt_t* const ctxt_pP,
......
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