diff --git a/openair2/LAYER2/MAC/eNB_scheduler_dlsch.c b/openair2/LAYER2/MAC/eNB_scheduler_dlsch.c
index a010c4ab9ca25d1f8fe42b285a90d9a81e3ef6f6..76dbd2a0a1c568769cd035275c642718fd2f2b1b 100644
--- a/openair2/LAYER2/MAC/eNB_scheduler_dlsch.c
+++ b/openair2/LAYER2/MAC/eNB_scheduler_dlsch.c
@@ -1047,18 +1047,18 @@ schedule_ue_spec(module_id_t module_idP, int slice_idxP,
 
 	  if (TBS - ta_len - header_length_total - sdu_length_total - 3 > 0) {
 	    rlc_status = mac_rlc_status_ind(module_idP,
-                    rnti,
-                    module_idP,
-                    frameP,
-                    subframeP,
-                    ENB_FLAG_YES,
-                    MBMS_FLAG_NO,
-                    lcid,
-                    TBS - ta_len - header_length_total - sdu_length_total - 3
-#if (RRC_VERSION >= MAKE_VERSION(14, 0, 0))
-                  , 0, 0
+                                      rnti,
+                                      module_idP,
+                                      frameP,
+                                      subframeP,
+                                      ENB_FLAG_YES,
+                                      MBMS_FLAG_NO,
+                                      lcid,
+                                      TBS - ta_len - header_length_total - sdu_length_total - 3
+#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
+                                    , 0, 0
 #endif
-                    );
+                                      );
 
 	    if (rlc_status.bytes_in_buffer > 0) {
 	      LOG_D(MAC, "[eNB %d][USER-PLANE DEFAULT DRB] Frame %d : DTCH->DLSCH, Requesting %d bytes from RLC (lcid %d total hdr len %d)\n",
@@ -1077,7 +1077,7 @@ schedule_ue_spec(module_id_t module_idP, int slice_idxP,
                                   lcid,
                                   TBS, //not used
 						                      (char *)&dlsch_buffer[sdu_length_total]
-#if (RRC_VERSION >= MAKE_VERSION(14, 0, 0))
+#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
                                   , 0, 0
 #endif
 	                                );
diff --git a/openair2/RRC/LTE/MESSAGES/asn1_msg.c b/openair2/RRC/LTE/MESSAGES/asn1_msg.c
index 4dc6c987ab190ba0d5c63f63d42ce861a57a2816..566661bd206f6f186246aa37fa117ccef50691cf 100644
--- a/openair2/RRC/LTE/MESSAGES/asn1_msg.c
+++ b/openair2/RRC/LTE/MESSAGES/asn1_msg.c
@@ -190,27 +190,27 @@ uint8_t do_MIB(rrc_eNB_carrier_data_t *carrier, uint32_t N_RB_DL, uint32_t phich
   switch (N_RB_DL) {
 
     case 6:
-      mib->message.dl_Bandwidth = MasterInformationBlock__dl_Bandwidth_n6;
+      mib->message.dl_Bandwidth = LTE_MasterInformationBlock__dl_Bandwidth_n6;
       break;
 
     case 15:
-      mib->message.dl_Bandwidth = MasterInformationBlock__dl_Bandwidth_n15;
+      mib->message.dl_Bandwidth = LTE_MasterInformationBlock__dl_Bandwidth_n15;
       break;
 
     case 25:
-      mib->message.dl_Bandwidth = MasterInformationBlock__dl_Bandwidth_n25;
+      mib->message.dl_Bandwidth = LTE_MasterInformationBlock__dl_Bandwidth_n25;
       break;
 
     case 50:
-      mib->message.dl_Bandwidth = MasterInformationBlock__dl_Bandwidth_n50;
+      mib->message.dl_Bandwidth = LTE_MasterInformationBlock__dl_Bandwidth_n50;
       break;
 
     case 75:
-      mib->message.dl_Bandwidth = MasterInformationBlock__dl_Bandwidth_n75;
+      mib->message.dl_Bandwidth = LTE_MasterInformationBlock__dl_Bandwidth_n75;
       break;
 
     case 100:
-      mib->message.dl_Bandwidth = MasterInformationBlock__dl_Bandwidth_n100;
+      mib->message.dl_Bandwidth = LTE_MasterInformationBlock__dl_Bandwidth_n100;
       break;
     default:
       AssertFatal(1==0,"Unknown dl_Bandwidth %d\n",N_RB_DL);
diff --git a/openair2/RRC/LTE/rrc_eNB.c b/openair2/RRC/LTE/rrc_eNB.c
index d9ce73f038d0df052f70b911c29fe321a33ec5c1..c20a13bf0000d80dad0ee0b6ea1b8a35001492eb 100644
--- a/openair2/RRC/LTE/rrc_eNB.c
+++ b/openair2/RRC/LTE/rrc_eNB.c
@@ -1025,7 +1025,7 @@ void
 rrc_eNB_process_RRCConnectionSetupComplete(
   const protocol_ctxt_t *const ctxt_pP,
   rrc_eNB_ue_context_t *ue_context_pP,
-  RRCConnectionSetupComplete_r8_IEs_t *rrcConnectionSetupComplete
+  LTE_RRCConnectionSetupComplete_r8_IEs_t *rrcConnectionSetupComplete
 )
 //-----------------------------------------------------------------------------
 {
diff --git a/openair2/RRC/LTE/rrc_eNB_S1AP.c b/openair2/RRC/LTE/rrc_eNB_S1AP.c
index 73316f4673e749a4d7c7ae56764404ac117db856..5fd32d038a651de1608e643714d4ef064699e0e6 100644
--- a/openair2/RRC/LTE/rrc_eNB_S1AP.c
+++ b/openair2/RRC/LTE/rrc_eNB_S1AP.c
@@ -796,7 +796,7 @@ void
 rrc_eNB_send_S1AP_NAS_FIRST_REQ(
   const protocol_ctxt_t* const ctxt_pP,
   rrc_eNB_ue_context_t* const ue_context_pP,
-  RRCConnectionSetupComplete_r8_IEs_t* rrcConnectionSetupComplete
+  LTE_RRCConnectionSetupComplete_r8_IEs_t* rrcConnectionSetupComplete
 )
 //------------------------------------------------------------------------------
 {