qcacmn: Fix bug in handling hal rx status tlv

Add missing break identifier in switch case of
hal_rx_status_get_tlv_info() used to parse hal rx status
TLV.

Change-Id: Ie913b6795d0a73fe8d28fefedd7ab799edda2619
This commit is contained in:
Soumya Bhat
2017-12-12 10:38:29 +05:30
committed by snandini
parent adfe908a35
commit f451d046d1

View File

@@ -787,6 +787,7 @@ hal_rx_status_get_tlv_info(void *rx_tlv, struct hal_rx_ppdu_info *ppdu_info)
} }
case WIFIRX_HEADER_E: case WIFIRX_HEADER_E:
ppdu_info->first_msdu_payload = rx_tlv; ppdu_info->first_msdu_payload = rx_tlv;
break;
case 0: case 0:
return HAL_TLV_STATUS_PPDU_DONE; return HAL_TLV_STATUS_PPDU_DONE;