om2k: Acknowledge the HW Infos Reports

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Change-Id: Ida92c9ca59a608854737ba9e330a5394cceff0fe
This commit is contained in:
Sylvain Munaut 2020-05-05 20:16:16 +02:00
parent 4a97d46cb1
commit eebb1ad0a0
1 changed files with 7 additions and 0 deletions

View File

@ -192,6 +192,10 @@ enum abis_om2k_msgtype {
OM2K_MSGT_TX_CONF_RES_NACK = 0x00b5,
OM2K_MSGT_TX_CONF_RES = 0x00b6,
OM2K_MSGT_CAPA_HW_INFOS_REP_ACK = 0x00e4,
OM2K_MSGT_CAPA_HW_INFOS_REP_NACK = 0x00e5,
OM2K_MSGT_CAPA_HW_INFOS_REP = 0x00e6,
OM2K_MSGT_CAPA_REQ = 0x00e8,
OM2K_MSGT_CAPA_REQ_ACK = 0x00ea,
OM2K_MSGT_CAPA_REQ_REJ = 0x00eb,
@ -2730,6 +2734,9 @@ int abis_om2k_rcvmsg(struct msgb *msg)
case OM2K_MSGT_TEST_RES:
rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_TEST_RES_ACK);
break;
case OM2K_MSGT_CAPA_HW_INFOS_REP:
rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_CAPA_HW_INFOS_REP_ACK);
break;
case OM2K_MSGT_CAPA_RES:
rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_CAPA_RES_ACK);
break;