Skip to content

Commit 4ea320f

Browse files
falucocodebot
authored andcommitted
RU: Fix case of eAxC word
1 parent 75f01e9 commit 4ea320f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

apps/gnb/gnb_appconfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ struct ru_ofh_appconfig {
473473
bool is_prach_control_plane_enabled = false;
474474
/// \brief Downlink broadcast flag.
475475
///
476-
/// If enabled, broadcasts the contents of a single antenna port to all downlink RU eAXCs.
476+
/// If enabled, broadcasts the contents of a single antenna port to all downlink RU eAxCs.
477477
bool is_downlink_broadcast_enabled = false;
478478
/// Uplink compression method.
479479
std::string compression_method_ul = "bfp";

include/srsran/ofh/ofh_sector_config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ struct sector_configuration {
6969
bool is_prach_control_plane_enabled = false;
7070
/// \brief Downlink broadcast flag.
7171
///
72-
/// If enabled, broadcasts the contents of a single antenna port to all downlink RU eAXCs.
72+
/// If enabled, broadcasts the contents of a single antenna port to all downlink RU eAxCs.
7373
bool is_downlink_broadcast_enabled = false;
7474
/// Uplink compression parameters.
7575
ofh::ru_compression_params ul_compression_params;

include/srsran/ru/ru_ofh_configuration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ struct ru_ofh_configuration {
8585
bool is_prach_control_plane_enabled = false;
8686
/// \brief Downlink broadcast flag.
8787
///
88-
/// If enabled, broadcasts the contents of a single antenna port to all downlink RU eAXCs.
88+
/// If enabled, broadcasts the contents of a single antenna port to all downlink RU eAxCs.
8989
bool is_downlink_broadcast_enabled = false;
9090
/// Uplink compression parameters.
9191
ofh::ru_compression_params ul_compression_params;

lib/ofh/receiver/ofh_uplane_uplink_packet_handler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ bool uplane_uplink_packet_handler::should_ecpri_packet_be_filtered(const ecpri::
9696

9797
const ecpri::iq_data_parameters& ecpri_iq_params = variant_get<ecpri::iq_data_parameters>(ecpri_params.type_params);
9898
if (ecpri_iq_params.pc_id != ru_ul_data_port && ecpri_iq_params.pc_id != ru_prach_port) {
99-
logger.debug("Dropping Open Fronthaul User-Plane packet as decoded eaxC is {}.", ecpri_iq_params.pc_id);
99+
logger.debug("Dropping Open Fronthaul User-Plane packet as decoded eAxC is {}.", ecpri_iq_params.pc_id);
100100

101101
return true;
102102
}

0 commit comments

Comments
 (0)