lib,pdcp_entity_lte: removed check for having SRBs only for 5bits SNlen. This was required for re-using the entity in NR.

This commit is contained in:
Pedro Alvarez 2021-11-25 13:00:58 +00:00
parent c69b221293
commit 3296ee679c
1 changed files with 0 additions and 4 deletions

View File

@ -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;
}