qcacmn: Changes to support pdev_id in host from zero

pdev_id in FW starts from one. Zero is reserved for Soc. But host uses
pdev_id starting from zero. Make WMI changes to take care of this
difference and always provide and accept pdev_id starting from zero at
WMI. Use 0xFF for SoC on host.

Change-Id: I49f481e54bbaeea9359753bc7d3da9092fc9559a
CRs-Fixed: 2045125
This commit is contained in:
Kiran Venkatappa
2017-05-10 16:24:51 +05:30
committed by snandini
parent e70e605ed1
commit 49341045ba
3 changed files with 20 additions and 1 deletions

View File

@@ -7232,4 +7232,8 @@ struct coex_config_params {
uint32_t config_arg6;
};
#define WMI_HOST_PDEV_ID_SOC 0xFF
#define WMI_HOST_PDEV_ID_0 0
#define WMI_HOST_PDEV_ID_1 1
#define WMI_HOST_PDEV_ID_2 2
#endif /* _WMI_UNIFIED_PARAM_H_ */