From 3296ee679c105965c1a3a5aef6caa5186b52e3cf Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Thu, 25 Nov 2021 13:00:58 +0000 Subject: [PATCH] lib,pdcp_entity_lte: removed check for having SRBs only for 5bits SNlen. This was required for re-using the entity in NR. --- lib/src/pdcp/pdcp_entity_lte.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/src/pdcp/pdcp_entity_lte.cc b/lib/src/pdcp/pdcp_entity_lte.cc index 4f1efdafa..1a3a13811 100644 --- a/lib/src/pdcp/pdcp_entity_lte.cc +++ b/lib/src/pdcp/pdcp_entity_lte.cc @@ -806,10 +806,6 @@ bool pdcp_entity_lte::check_valid_config() logger.error("Trying to configure SRB or RLC AM bearer with SN LEN of 7"); return false; } - if (cfg.sn_len == PDCP_SN_LEN_12 && is_srb()) { - logger.error("Trying to configure SRB with SN LEN of 12."); - return false; - } return true; }