oml: cosmetic code style changes in rx_oml_ipa_rsl_connect()

Change-Id: I2841e15865596bbb24cfe1f27691404514d3b6f0
This commit is contained in:
Vadim Yanitskiy 2021-02-06 15:14:05 +01:00
parent 5ca7707e85
commit f7afeb1fa9
1 changed files with 3 additions and 6 deletions

View File

@ -1391,15 +1391,12 @@ static int rx_oml_ipa_rsl_connect(struct gsm_bts_trx *trx, struct msgb *msg,
uint8_t stream_id = 0;
if (TLVP_PRES_LEN(tp, NM_ATT_IPACC_DST_IP, 4)) {
if (TLVP_PRES_LEN(tp, NM_ATT_IPACC_DST_IP, 4))
ip = ntohl(tlvp_val32_unal(tp, NM_ATT_IPACC_DST_IP));
}
if (TLVP_PRES_LEN(tp, NM_ATT_IPACC_DST_IP_PORT, 2)) {
if (TLVP_PRES_LEN(tp, NM_ATT_IPACC_DST_IP_PORT, 2))
port = ntohs(tlvp_val16_unal(tp, NM_ATT_IPACC_DST_IP_PORT));
}
if (TLVP_PRES_LEN(tp, NM_ATT_IPACC_STREAM_ID, 1)) {
if (TLVP_PRES_LEN(tp, NM_ATT_IPACC_STREAM_ID, 1))
stream_id = *TLVP_VAL(tp, NM_ATT_IPACC_STREAM_ID);
}
in.s_addr = htonl(ip);
LOGP(DOML, LOGL_INFO, "%s: Rx IPA RSL CONNECT IP=%s PORT=%u STREAM=0x%02x\n",