On Wed, Sep 18, 2019 at 3:09 PM Navid Emamdoost navid.emamdoost@gmail.com wrote:
i2s_pdata = kcalloc(3, sizeof(struct i2s_platform_data), GFP_KERNEL); if (i2s_pdata == NULL) {
kfree(adev->acp.acp_res);
kfree(adev->acp.acp_cell);
return -ENOMEM;
ret = -ENOMEM;
goto out3; }
I don't see a corresponding kfree() for i2s_pdata in acp_hw_fini(). Could this be a memory leak?