diff options
| author | Alex Hung <[email protected]> | 2024-07-15 19:53:17 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2024-07-16 15:44:10 +0000 |
| commit | 6e169c7e0f842c48c7bf683fb789dbf5a8b1dfd8 (patch) | |
| tree | 9de956fb1a4688b5d54952a53310e4bc68bed6fc /drivers/gpu/drm/amd/display/dc/inc/hw | |
| parent | drm/amdgpu/vcn: not pause dpg for unified queue (diff) | |
| download | kernel-6e169c7e0f842c48c7bf683fb789dbf5a8b1dfd8.tar.gz kernel-6e169c7e0f842c48c7bf683fb789dbf5a8b1dfd8.zip | |
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 <[email protected]>
Closes: https://lore.kernel.org/dri-devel/[email protected]/
Reviewed-by: Aurabindo Pillai <[email protected]>
Signed-off-by: Alex Hung <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/inc/hw')
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/inc/hw/mpc.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/inc/hw/mpc.h b/drivers/gpu/drm/amd/display/dc/inc/hw/mpc.h index 40a9b3471208..3a89cc0cffc1 100644 --- a/drivers/gpu/drm/amd/display/dc/inc/hw/mpc.h +++ b/drivers/gpu/drm/amd/display/dc/inc/hw/mpc.h @@ -1039,6 +1039,20 @@ struct mpc_funcs { */ void (*program_lut_mode)(struct mpc *mpc, const enum MCM_LUT_ID id, const enum MCM_LUT_XABLE xable, bool lut_bank_a, int mpcc_id); + /** + * @program_3dlut_size: + * + * Program 3D LUT size. + * + * Parameters: + * - [in/out] mpc - MPC context. + * - [in] is_17x17x17 - is 3dlut 17x17x17 + * - [in] mpcc_id + * + * Return: + * + * void + */ void (*program_3dlut_size)(struct mpc *mpc, bool is_17x17x17, int mpcc_id); }; |
