Applied. Thanks! Alex On Mon, Jan 24, 2022 at 10:25 AM Harry Wentland <harry.wentland@xxxxxxx> wrote: > > On 2022-01-21 20:23, Randy Dunlap wrote: > > Change a static function's comment from "/**" (indicating kernel-doc > > notation) to "/*" (indicating a regular C language comment). > > This prevents multiple kernel-doc warnings: > > > > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link_dp.c:4343: warning: Function parameter or member 'max_supported_frl_bw_in_kbps' not described in 'intersect_frl_link_bw_support' > > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link_dp.c:4343: warning: Function parameter or member 'hdmi_encoded_link_bw' not described in 'intersect_frl_link_bw_support' > > drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link_dp.c:4343: warning: expecting prototype for Return PCON's post FRL link training supported BW if its non(). Prototype was for intersect_frl_link_bw_support() instead > > > > Fixes: c022375ae095 ("drm/amd/display: Add DP-HDMI FRL PCON Support in DC") > > Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> > > Reported-by: kernel test robot <lkp@xxxxxxxxx> > > Cc: Fangzhi Zuo <Jerry.Zuo@xxxxxxx> > > Cc: Alex Deucher <alexander.deucher@xxxxxxx> > > Cc: Nicholas Kazlauskas <nicholas.kazlauskas@xxxxxxx> > > Cc: Harry Wentland <harry.wentland@xxxxxxx> > > Cc: Leo Li <sunpeng.li@xxxxxxx> > > Cc: Rodrigo Siqueira <Rodrigo.Siqueira@xxxxxxx> > > Cc: amd-gfx@xxxxxxxxxxxxxxxxxxxxx > > Cc: dri-devel@xxxxxxxxxxxxxxxxxxxxx > > Reviewed-by: Harry Wentland <harry.wentland@xxxxxxx> > > Harry > > > --- > > drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > --- linux-next-20220121.orig/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c > > +++ linux-next-20220121/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c > > @@ -4970,7 +4970,7 @@ uint32_t dc_link_bw_kbps_from_raw_frl_li > > return 0; > > } > > > > -/** > > +/* > > * Return PCON's post FRL link training supported BW if its non-zero, otherwise return max_supported_frl_bw. > > */ > > static uint32_t intersect_frl_link_bw_support( >