qcacld-3.0: Init cap before use it

In function ol_configure_target cap is used uninitialized when call
pld_get_platform_cap fail, although pld_get_bus_type and
hif_get_bus_type return same bus type, so actually it has no issue here,
but it look not clear here, init it explicitly.

Change-Id: I001956521c62c14b3537b399bbca1791b274a4c7
CRs-Fixed: 2115553
This commit is contained in:
Will Huang
2017-09-22 18:25:56 +08:00
zatwierdzone przez snandini
rodzic 22f15d7957
commit 2788dcf8f2

Wyświetl plik

@@ -737,7 +737,7 @@ static QDF_STATUS ol_set_lpass_support(struct ol_context *ol_ctx)
QDF_STATUS ol_configure_target(struct ol_context *ol_ctx)
{
uint32_t param;
struct pld_platform_cap cap;
struct pld_platform_cap cap = {0};
int ret;
struct hif_opaque_softc *scn = ol_ctx->scn;
struct hif_target_info *tgt_info = hif_get_target_info_handle(scn);