Message ID | 3aee446a0e396fe3f338f270746939f6e803a4de.1656409369.git.mchehab@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix kernel-doc warnings at linux-next | expand |
Applied. Thanks! On Tue, Jun 28, 2022 at 5:46 AM Mauro Carvalho Chehab <mchehab@kernel.org> wrote: > > This symbol is missing documentation: > > drivers/gpu/drm/amd/include/amd_shared.h:224: warning: Enum value 'PP_GFX_DCS_MASK' not described in enum 'PP_FEATURE_MASK' > > Document it. > > Fixes: 680602d6c2d6 ("drm/amd/pm: enable DCS") > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> > --- > > To avoid mailbombing on a large number of people, only mailing lists were C/C on the cover. > See [PATCH 00/22] at: https://lore.kernel.org/all/cover.1656409369.git.mchehab@kernel.org/ > > drivers/gpu/drm/amd/include/amd_shared.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/amd/include/amd_shared.h b/drivers/gpu/drm/amd/include/amd_shared.h > index bcdf7453a403..2e02a6fc1717 100644 > --- a/drivers/gpu/drm/amd/include/amd_shared.h > +++ b/drivers/gpu/drm/amd/include/amd_shared.h > @@ -193,6 +193,7 @@ enum amd_powergating_state { > * @PP_ACG_MASK: Adaptive clock generator. > * @PP_STUTTER_MODE: Stutter mode. > * @PP_AVFS_MASK: Adaptive voltage and frequency scaling. > + * @PP_GFX_DCS_MASK: GFX Async DCS. > * > * To override these settings on boot, append amdgpu.ppfeaturemask=<mask> to > * the kernel's command line parameters. This is usually done through a system's > -- > 2.36.1 >
diff --git a/drivers/gpu/drm/amd/include/amd_shared.h b/drivers/gpu/drm/amd/include/amd_shared.h index bcdf7453a403..2e02a6fc1717 100644 --- a/drivers/gpu/drm/amd/include/amd_shared.h +++ b/drivers/gpu/drm/amd/include/amd_shared.h @@ -193,6 +193,7 @@ enum amd_powergating_state { * @PP_ACG_MASK: Adaptive clock generator. * @PP_STUTTER_MODE: Stutter mode. * @PP_AVFS_MASK: Adaptive voltage and frequency scaling. + * @PP_GFX_DCS_MASK: GFX Async DCS. * * To override these settings on boot, append amdgpu.ppfeaturemask=<mask> to * the kernel's command line parameters. This is usually done through a system's
This symbol is missing documentation: drivers/gpu/drm/amd/include/amd_shared.h:224: warning: Enum value 'PP_GFX_DCS_MASK' not described in enum 'PP_FEATURE_MASK' Document it. Fixes: 680602d6c2d6 ("drm/amd/pm: enable DCS") Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- To avoid mailbombing on a large number of people, only mailing lists were C/C on the cover. See [PATCH 00/22] at: https://lore.kernel.org/all/cover.1656409369.git.mchehab@kernel.org/ drivers/gpu/drm/amd/include/amd_shared.h | 1 + 1 file changed, 1 insertion(+)