Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/amd/display: Add doc entry for program_3dlut_size

Fixes the warning:

Function parameter or struct member 'program_3dlut_size' not described in
'mpc_funcs'

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Closes: https://lore.kernel.org/dri-devel/20240715090445.7e9387ec@canb.auug.org.au/
Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Alex Hung <alex.hung@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Alex Hung and committed by
Alex Deucher
6e169c7e 7d75ef37

+14
+14
drivers/gpu/drm/amd/display/dc/inc/hw/mpc.h
··· 1039 1039 */ 1040 1040 void (*program_lut_mode)(struct mpc *mpc, const enum MCM_LUT_ID id, const enum MCM_LUT_XABLE xable, 1041 1041 bool lut_bank_a, int mpcc_id); 1042 + /** 1043 + * @program_3dlut_size: 1044 + * 1045 + * Program 3D LUT size. 1046 + * 1047 + * Parameters: 1048 + * - [in/out] mpc - MPC context. 1049 + * - [in] is_17x17x17 - is 3dlut 17x17x17 1050 + * - [in] mpcc_id 1051 + * 1052 + * Return: 1053 + * 1054 + * void 1055 + */ 1042 1056 void (*program_3dlut_size)(struct mpc *mpc, bool is_17x17x17, int mpcc_id); 1043 1057 }; 1044 1058