mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-19 08:11:11 -04:00
drm/amd/display: correct kernel-doc in dml21_wrapper.h
Fix all kernel-doc warnings in dml21_wrapper.h: - add missing @dml_ctx entries (2 places) - fix function prototype typo for dml21_create() - change a blank kernel-doc line to " *" Fixes these warnings: Warning: drivers/gpu/drm/amd/display/dc/dml2_0/dml21/dml21_wrapper.h:30 function parameter 'dml_ctx' not described in 'dml21_create' Warning: drivers/gpu/drm/amd/display/dc/dml2_0/dml21/dml21_wrapper.h:30 expecting prototype for dml2_create(). Prototype was for dml21_create() instead Warning: drivers/gpu/drm/amd/display/dc/dml2_0/dml21/dml21_wrapper.h:55 bad line: Warning: drivers/gpu/drm/amd/display/dc/dml2_0/dml21/dml21_wrapper.h:61 function parameter 'dml_ctx' not described in 'dml21_validate' Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
e80205f3a7
commit
b4f1e6a271
@@ -17,9 +17,9 @@ struct dml2_context;
|
||||
enum dc_validate_mode;
|
||||
|
||||
/**
|
||||
* dml2_create - Creates dml21_context.
|
||||
* dml21_create - Creates dml21_context.
|
||||
* @in_dc: dc.
|
||||
* @dml2: Created dml21 context.
|
||||
* @dml_ctx: Created dml21 context.
|
||||
* @config: dml21 configuration options.
|
||||
*
|
||||
* Create of DML21 is done as part of dc_state creation.
|
||||
@@ -40,6 +40,7 @@ void dml21_reinit(const struct dc *in_dc, struct dml2_context *dml_ctx, const st
|
||||
* dml21_validate - Determines if a display configuration is supported or not.
|
||||
* @in_dc: dc.
|
||||
* @context: dc_state to be validated.
|
||||
* @dml_ctx: dml21 context.
|
||||
* @validate_mode: DC_VALIDATE_MODE_ONLY and DC_VALIDATE_MODE_AND_STATE_INDEX
|
||||
* will not populate context.res_ctx.
|
||||
*
|
||||
@@ -53,7 +54,7 @@ void dml21_reinit(const struct dc *in_dc, struct dml2_context *dml_ctx, const st
|
||||
* -dml21_check_mode_support - for DC_VALIDATE_MODE_ONLY and DC_VALIDATE_MODE_AND_STATE_INDEX option
|
||||
* Calculates if dc_state can be supported for the input display
|
||||
* config.
|
||||
|
||||
*
|
||||
* Context: Two threads may not invoke this function concurrently unless they reference
|
||||
* separate dc_states for validation.
|
||||
* Return: True if mode is supported, false otherwise.
|
||||
|
||||
Reference in New Issue
Block a user