mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 15:13:55 +08:00
ASoC: q6core: Use kmemdup to replace kzalloc + memcpy
kmemdup has implemented the function that kzalloc() + memcpy() will do. and we prefer to use the kmemdup rather than the open coded implementation. Signed-off-by: zhong jiang <zhongjiang@huawei.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
fb77436a44
commit
18fbe800e6
@ -105,12 +105,10 @@ static int q6core_callback(struct apr_device *adev, struct apr_resp_pkt *data)
|
||||
bytes = sizeof(*fwk) + fwk->num_services *
|
||||
sizeof(fwk->svc_api_info[0]);
|
||||
|
||||
core->fwk_version = kzalloc(bytes, GFP_ATOMIC);
|
||||
core->fwk_version = kmemdup(data->payload, bytes, GFP_ATOMIC);
|
||||
if (!core->fwk_version)
|
||||
return -ENOMEM;
|
||||
|
||||
memcpy(core->fwk_version, data->payload, bytes);
|
||||
|
||||
core->fwk_version_supported = true;
|
||||
core->resp_received = true;
|
||||
|
||||
@ -124,12 +122,10 @@ static int q6core_callback(struct apr_device *adev, struct apr_resp_pkt *data)
|
||||
|
||||
len = sizeof(*v) + v->num_services * sizeof(v->svc_api_info[0]);
|
||||
|
||||
core->svc_version = kzalloc(len, GFP_ATOMIC);
|
||||
core->svc_version = kmemdup(data->payload, len, GFP_ATOMIC);
|
||||
if (!core->svc_version)
|
||||
return -ENOMEM;
|
||||
|
||||
memcpy(core->svc_version, data->payload, len);
|
||||
|
||||
core->get_version_supported = true;
|
||||
core->resp_received = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user