summaryrefslogtreecommitdiff
path: root/drivers/platform
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2019-09-03 23:21:35 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2019-09-03 23:21:35 -0700
commit3bf778da1f8d2e4a181881edbdfa2432e1372391 (patch)
treed72b5911a98fcadc31771e023880570b0015add5 /drivers/platform
parent5543865cef1fc6265771af042fdb07b7e93f991f (diff)
parentf19263cde8ffc99954df3f7f3a6fc06343cd27ba (diff)
Merge "msm: qcn: Fix type casting of channel descriptor"
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/msm/qcn/qcn_sdio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/msm/qcn/qcn_sdio.c b/drivers/platform/msm/qcn/qcn_sdio.c
index e42109434557..1e3ff076232e 100644
--- a/drivers/platform/msm/qcn/qcn_sdio.c
+++ b/drivers/platform/msm/qcn/qcn_sdio.c
@@ -998,7 +998,7 @@ struct sdio_al_channel_handle *sdio_al_register_channel(
return ERR_PTR(-EINVAL);
}
- ch_info = kzalloc(sizeof(struct qcn_sdio_client_info), GFP_KERNEL);
+ ch_info = kzalloc(sizeof(struct qcn_sdio_ch_info), GFP_KERNEL);
if (!ch_info)
return ERR_PTR(-ENOMEM);