From a064e85c54de2d4f808cb2d47d91c37f87548d9e Mon Sep 17 00:00:00 2001 From: David Rupprecht Date: Mon, 19 Apr 2021 17:35:12 +0200 Subject: [PATCH] rename common lte header --- lib/include/srsran/common/{lte_common.h => common_lte.h} | 6 +++--- lib/src/upper/rlc_tm.cc | 2 +- srsenb/hdr/common/common_enb.h | 2 +- srsenb/test/mac/sched_benchmark.cc | 2 +- srsenb/test/mac/sched_ca_test.cc | 2 +- srsenb/test/mac/sched_dci_test.cc | 2 +- srsenb/test/mac/sched_grid_test.cc | 2 +- srsenb/test/mac/sched_test_rand.cc | 2 +- srsue/hdr/stack/rrc/rrc.h | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) rename lib/include/srsran/common/{lte_common.h => common_lte.h} (96%) diff --git a/lib/include/srsran/common/lte_common.h b/lib/include/srsran/common/common_lte.h similarity index 96% rename from lib/include/srsran/common/lte_common.h rename to lib/include/srsran/common/common_lte.h index 788c2b1da..f650dc2e3 100644 --- a/lib/include/srsran/common/lte_common.h +++ b/lib/include/srsran/common/common_lte.h @@ -10,8 +10,8 @@ * */ -#ifndef SRSRAN_LTE_COMMON_H -#define SRSRAN_LTE_COMMON_H +#ifndef SRSRAN_COMMON_LTE_H +#define SRSRAN_COMMON_LTE_H #include #include @@ -88,4 +88,4 @@ inline const char* get_drb_name(lte_drb drb_id) } // namespace srsran -#endif // SRSRAN_LTE_COMMON_H +#endif // SRSRAN_COMMON_LTE_H diff --git a/lib/src/upper/rlc_tm.cc b/lib/src/upper/rlc_tm.cc index 3ff1d7cee..08478a6bc 100644 --- a/lib/src/upper/rlc_tm.cc +++ b/lib/src/upper/rlc_tm.cc @@ -11,7 +11,7 @@ */ #include "srsran/upper/rlc_tm.h" -#include "srsran/common/lte_common.h" +#include "srsran/common/common_lte.h" #include "srsran/interfaces/ue_pdcp_interfaces.h" #include "srsran/interfaces/ue_rrc_interfaces.h" diff --git a/srsenb/hdr/common/common_enb.h b/srsenb/hdr/common/common_enb.h index 7ed9cf72b..4c87f8f39 100644 --- a/srsenb/hdr/common/common_enb.h +++ b/srsenb/hdr/common/common_enb.h @@ -17,7 +17,7 @@ INCLUDES *******************************************************************************/ -#include "srsran/common/lte_common.h" +#include "srsran/common/common_lte.h" #include namespace srsenb { diff --git a/srsenb/test/mac/sched_benchmark.cc b/srsenb/test/mac/sched_benchmark.cc index d70b16a4f..606013a1f 100644 --- a/srsenb/test/mac/sched_benchmark.cc +++ b/srsenb/test/mac/sched_benchmark.cc @@ -13,7 +13,7 @@ #include "sched_test_common.h" #include "srsenb/hdr/stack/mac/sched.h" #include "srsran/adt/accumulators.h" -#include "srsran/common/lte_common.h" +#include "srsran/common/common_lte.h" #include namespace srsenb { diff --git a/srsenb/test/mac/sched_ca_test.cc b/srsenb/test/mac/sched_ca_test.cc index 9e5946e22..f0d925aa8 100644 --- a/srsenb/test/mac/sched_ca_test.cc +++ b/srsenb/test/mac/sched_ca_test.cc @@ -13,7 +13,7 @@ #include "sched_test_common.h" #include "sched_test_utils.h" #include "srsenb/hdr/stack/mac/sched.h" -#include "srsran/common/lte_common.h" +#include "srsran/common/common_lte.h" #include "srsran/mac/pdu.h" using namespace srsenb; diff --git a/srsenb/test/mac/sched_dci_test.cc b/srsenb/test/mac/sched_dci_test.cc index a42713bfc..6f78e615b 100644 --- a/srsenb/test/mac/sched_dci_test.cc +++ b/srsenb/test/mac/sched_dci_test.cc @@ -13,7 +13,7 @@ #include "sched_test_utils.h" #include "srsenb/hdr/stack/mac/sched_common.h" #include "srsenb/hdr/stack/mac/sched_phy_ch/sched_dci.h" -#include "srsran/common/lte_common.h" +#include "srsran/common/common_lte.h" #include "srsran/common/test_common.h" namespace srsenb { diff --git a/srsenb/test/mac/sched_grid_test.cc b/srsenb/test/mac/sched_grid_test.cc index 776c9888b..ec366b055 100644 --- a/srsenb/test/mac/sched_grid_test.cc +++ b/srsenb/test/mac/sched_grid_test.cc @@ -12,7 +12,7 @@ #include "sched_test_common.h" #include "srsenb/hdr/stack/mac/sched_grid.h" -#include "srsran/common/lte_common.h" +#include "srsran/common/common_lte.h" #include "srsran/common/test_common.h" using namespace srsenb; diff --git a/srsenb/test/mac/sched_test_rand.cc b/srsenb/test/mac/sched_test_rand.cc index 4904bff72..c1ff6b4e1 100644 --- a/srsenb/test/mac/sched_test_rand.cc +++ b/srsenb/test/mac/sched_test_rand.cc @@ -25,7 +25,7 @@ #include "sched_common_test_suite.h" #include "sched_test_common.h" #include "sched_test_utils.h" -#include "srsran/common/lte_common.h" +#include "srsran/common/common_lte.h" #include "srsran/common/test_common.h" namespace srsenb { diff --git a/srsue/hdr/stack/rrc/rrc.h b/srsue/hdr/stack/rrc/rrc.h index a6e474742..48a168974 100644 --- a/srsue/hdr/stack/rrc/rrc.h +++ b/srsue/hdr/stack/rrc/rrc.h @@ -21,7 +21,7 @@ #include "srsran/common/block_queue.h" #include "srsran/common/buffer_pool.h" #include "srsran/common/common.h" -#include "srsran/common/lte_common.h" +#include "srsran/common/common_lte.h" #include "srsran/common/security.h" #include "srsran/common/stack_procedure.h" #include "srsran/interfaces/ue_interfaces.h"