disp: msm: fix compilation errors for dlkm compilation

Fix dlkm compilation errors that are due to the use of -Werror
flags used by the build system.

Change-Id: I5e1e9bc63c1361d73e4930aab123212717872ecb
Signed-off-by: Tatenda Chipeperekwa <tatendac@codeaurora.org>
This commit is contained in:
Tatenda Chipeperekwa
2020-12-08 15:00:14 -08:00
committed by Abhijit Kulkarni
orang tua 1b3ad8486d
melakukan c6257272d4
31 mengubah file dengan 87 tambahan dan 85 penghapusan

Melihat File

@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2020, The Linux Foundation. All rights reserved.
* Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
*/
#include <linux/notifier.h>
#include <linux/haven/hh_rm_drv.h>
@@ -127,14 +127,14 @@ static int _sde_vm_lend_mem(struct sde_vm *vm,
acl_desc = sde_vm_populate_acl(HH_TRUSTED_VM);
if (IS_ERR(acl_desc)) {
SDE_ERROR("failed to populate acl descriptor, rc = %d\n",
SDE_ERROR("failed to populate acl descriptor, rc = %ld\n",
PTR_ERR(acl_desc));
return -EINVAL;
}
sgl_desc = sde_vm_populate_sgl(io_res);
if (IS_ERR_OR_NULL(sgl_desc)) {
SDE_ERROR("failed to populate sgl descriptor, rc = %d\n",
SDE_ERROR("failed to populate sgl descriptor, rc = %ld\n",
PTR_ERR(sgl_desc));
rc = -EINVAL;
goto sgl_fail;