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/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>

authored by

Randy Dunlap and committed by
Dmitry Baryshkov
9d22d53e 70e66a0c

+7 -3
+7 -3
drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.h
··· 21 21 */ 22 22 struct dpu_hw_dsc_ops { 23 23 /** 24 - * dsc_disable - disable dsc 24 + * @dsc_disable: disable dsc 25 25 * @hw_dsc: Pointer to dsc context 26 26 */ 27 27 void (*dsc_disable)(struct dpu_hw_dsc *hw_dsc); 28 28 29 29 /** 30 - * dsc_config - configures dsc encoder 30 + * @dsc_config: configures dsc encoder 31 31 * @hw_dsc: Pointer to dsc context 32 32 * @dsc: panel dsc parameters 33 33 * @mode: dsc topology mode to be set ··· 39 39 u32 initial_lines); 40 40 41 41 /** 42 - * dsc_config_thresh - programs panel thresholds 42 + * @dsc_config_thresh: programs panel thresholds 43 43 * @hw_dsc: Pointer to dsc context 44 44 * @dsc: panel dsc parameters 45 45 */ 46 46 void (*dsc_config_thresh)(struct dpu_hw_dsc *hw_dsc, 47 47 struct drm_dsc_config *dsc); 48 48 49 + /** 50 + * @dsc_bind_pingpong_blk: binds pixel output from a DSC block 51 + * to a pingpong block 52 + */ 49 53 void (*dsc_bind_pingpong_blk)(struct dpu_hw_dsc *hw_dsc, 50 54 enum dpu_pingpong pp); 51 55 };