Skip to content

Commit 9d22d53

Browse files
rddunlaplumag
authored andcommitted
drm/msm/dpu: dpu_hw_dsc.h: fix all kernel-doc warnings
Correct or add kernel-doc comments to eliminate all warnings: Warning: drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.h:23 Incorrect use of kernel-doc format: * dsc_disable - disable dsc Warning: drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.h:29 Incorrect use of kernel-doc format: * dsc_config - configures dsc encoder Warning: drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.h:41 Incorrect use of kernel-doc format: * dsc_config_thresh - programs panel thresholds Warning: drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.h:50 struct member 'dsc_disable' not described in 'dpu_hw_dsc_ops' Warning: drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.h:50 struct member 'dsc_config' not described in 'dpu_hw_dsc_ops' Warning: drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.h:50 struct member 'dsc_config_thresh' not described in 'dpu_hw_dsc_ops' Warning: drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.h:50 struct member 'dsc_bind_pingpong_blk' not described in 'dpu_hw_dsc_ops' Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Patchwork: https://patchwork.freedesktop.org/patch/695658/ Link: https://lore.kernel.org/r/20251219184638.1813181-7-rdunlap@infradead.org Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
1 parent 70e66a0 commit 9d22d53

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.h

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ struct dpu_hw_dsc;
2121
*/
2222
struct dpu_hw_dsc_ops {
2323
/**
24-
* dsc_disable - disable dsc
24+
* @dsc_disable: disable dsc
2525
* @hw_dsc: Pointer to dsc context
2626
*/
2727
void (*dsc_disable)(struct dpu_hw_dsc *hw_dsc);
2828

2929
/**
30-
* dsc_config - configures dsc encoder
30+
* @dsc_config: configures dsc encoder
3131
* @hw_dsc: Pointer to dsc context
3232
* @dsc: panel dsc parameters
3333
* @mode: dsc topology mode to be set
@@ -39,13 +39,17 @@ struct dpu_hw_dsc_ops {
3939
u32 initial_lines);
4040

4141
/**
42-
* dsc_config_thresh - programs panel thresholds
42+
* @dsc_config_thresh: programs panel thresholds
4343
* @hw_dsc: Pointer to dsc context
4444
* @dsc: panel dsc parameters
4545
*/
4646
void (*dsc_config_thresh)(struct dpu_hw_dsc *hw_dsc,
4747
struct drm_dsc_config *dsc);
4848

49+
/**
50+
* @dsc_bind_pingpong_blk: binds pixel output from a DSC block
51+
* to a pingpong block
52+
*/
4953
void (*dsc_bind_pingpong_blk)(struct dpu_hw_dsc *hw_dsc,
5054
enum dpu_pingpong pp);
5155
};

0 commit comments

Comments
 (0)