From 141577c88bf1efc20a8df66f8f0b803dfc64253e Mon Sep 17 00:00:00 2001
From: Robert Schmidt <robert.schmidt@openairinterface.org>
Date: Wed, 3 Jul 2024 12:11:28 +0200
Subject: [PATCH] Refactor code and make shorter through ternary operator

---
 common/utils/nr/nr_common.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/common/utils/nr/nr_common.c b/common/utils/nr/nr_common.c
index d2a38f11c8c..2d7e4ce02f0 100644
--- a/common/utils/nr/nr_common.c
+++ b/common/utils/nr/nr_common.c
@@ -644,14 +644,8 @@ int get_dmrs_port(int nl, uint16_t dmrs_ports)
 
 frame_type_t get_frame_type(uint16_t current_band, uint8_t scs_index)
 {
-  frame_type_t current_type;
   int32_t delta_duplex = get_delta_duplex(current_band, scs_index);
-
-  if (delta_duplex == 0)
-    current_type = TDD;
-  else
-    current_type = FDD;
-
+  frame_type_t current_type = delta_duplex == 0 ? TDD : FDD;
   LOG_D(NR_MAC, "NR band %d, duplex mode %s, duplex spacing = %d KHz\n", current_band, duplex_mode[current_type], delta_duplex);
   return current_type;
 }
-- 
GitLab