From f70575805708cabdedea7498aaa3f710fde4d920 Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Wed, 31 Jan 2024 03:29:01 +0000 Subject: [PATCH] add lvds1024*800 --- kernel/drivers/gpu/arm/bifrost/mali_kbase_smc.h | 46 +++++++++++++++++++++++----------------------- 1 files changed, 23 insertions(+), 23 deletions(-) diff --git a/kernel/drivers/gpu/arm/bifrost/mali_kbase_smc.h b/kernel/drivers/gpu/arm/bifrost/mali_kbase_smc.h index d0086db..40a3483 100644 --- a/kernel/drivers/gpu/arm/bifrost/mali_kbase_smc.h +++ b/kernel/drivers/gpu/arm/bifrost/mali_kbase_smc.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * - * (C) COPYRIGHT 2015, 2020-2021 ARM Limited. All rights reserved. + * (C) COPYRIGHT 2015, 2020-2022 ARM Limited. All rights reserved. * * This program is free software and is provided to you under the terms of the * GNU General Public License version 2 as published by the Free Software @@ -36,31 +36,31 @@ /** - * kbase_invoke_smc_fid - Perform a secure monitor call - * @fid: The SMC function to call, see SMC Calling convention. - * @arg0: First argument to the SMC. - * @arg1: Second argument to the SMC. - * @arg2: Third argument to the SMC. - * - * See SMC Calling Convention for details. - * - * Return: the return value from the SMC. - */ + * kbase_invoke_smc_fid - Perform a secure monitor call + * @fid: The SMC function to call, see SMC Calling convention. + * @arg0: First argument to the SMC. + * @arg1: Second argument to the SMC. + * @arg2: Third argument to the SMC. + * + * See SMC Calling Convention for details. + * + * Return: the return value from the SMC. + */ u64 kbase_invoke_smc_fid(u32 fid, u64 arg0, u64 arg1, u64 arg2); /** - * kbase_invoke_smc_fid - Perform a secure monitor call - * @oen: Owning Entity number (SIP, STD etc). - * @function_number: The function number within the OEN. - * @smc64: use SMC64 calling convention instead of SMC32. - * @arg0: First argument to the SMC. - * @arg1: Second argument to the SMC. - * @arg2: Third argument to the SMC. - * - * See SMC Calling Convention for details. - * - * Return: the return value from the SMC call. - */ + * kbase_invoke_smc - Perform a secure monitor call + * @oen: Owning Entity number (SIP, STD etc). + * @function_number: The function number within the OEN. + * @smc64: use SMC64 calling convention instead of SMC32. + * @arg0: First argument to the SMC. + * @arg1: Second argument to the SMC. + * @arg2: Third argument to the SMC. + * + * See SMC Calling Convention for details. + * + * Return: the return value from the SMC call. + */ u64 kbase_invoke_smc(u32 oen, u16 function_number, bool smc64, u64 arg0, u64 arg1, u64 arg2); -- Gitblit v1.6.2