浏览代码

fw-api: CL 4234772 - update fw common interface files

WMI_SERVICE_EXT_IS_ENABLED bug fix: apply a mask to check a single bit
The current definition of the WMI_SERVICE_EXT_IS_ENABLED macro doesnt apply a mask to isolate the bit in question, and hence ends up returning the value of all higher bits within the same word, along with the bit of interest.To fix this, the macro is updated to apply a 0x1 mask, so that only the bit of interest is considered.

Change-Id: I1caabcae808ecb3b062ecacdce2b343e3b1b5acf
CRs-Fixed: 1107600
spuligil 7 年之前
父节点
当前提交
dafa5a280f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      fw/wmi_services.h

+ 2 - 2
fw/wmi_services.h

@@ -309,8 +309,8 @@ typedef  enum  {
         (svc_id) < WMI_MAX_SERVICE ? \
             WMI_SERVICE_IS_ENABLED(pwmi_svc_bmap, svc_id) : \
             /* If service ID is in the extended range, check ext_bmap */ \
-            (pwmi_svc_ext_bmap)[((svc_id) - WMI_MAX_SERVICE) / 32] >> \
-                ((svc_id) & 0x1f))
+            (((pwmi_svc_ext_bmap)[((svc_id) - WMI_MAX_SERVICE) / 32] >> \
+                ((svc_id) & 0x1f)) & 0x1))
 
 
 #ifdef __cplusplus