Message ID | 5b76c5625709aaaa3abee98faa620b9f3d27ff85.1603791716.git.mchehab+huawei@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | None | expand |
On Tue, Oct 27, 2020 at 10:51:35AM +0100, Mauro Carvalho Chehab wrote: > A kernel-doc markup should start with the identifier on its > first line. > > Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> I've merged all the drm patches, excluding the amdgpu ones, to drm-misc-fixes. Should land in -rc2. Thanks for doing these patches. -Daniel > --- > include/drm/drm_print.h | 20 +++++++++++++++++--- > 1 file changed, 17 insertions(+), 3 deletions(-) > > diff --git a/include/drm/drm_print.h b/include/drm/drm_print.h > index 1c9417430d08..f32d179e139d 100644 > --- a/include/drm/drm_print.h > +++ b/include/drm/drm_print.h > @@ -338,7 +338,7 @@ void drm_dev_dbg(const struct device *dev, enum drm_debug_category category, > const char *format, ...); > > /** > - * Error output. > + * DRM_DEV_ERROR() - Error output. > * > * @dev: device pointer > * @fmt: printf() like format string. > @@ -347,10 +347,12 @@ void drm_dev_dbg(const struct device *dev, enum drm_debug_category category, > drm_dev_printk(dev, KERN_ERR, "*ERROR* " fmt, ##__VA_ARGS__) > > /** > - * Rate limited error output. Like DRM_ERROR() but won't flood the log. > + * DRM_DEV_ERROR_RATELIMITED() - Rate limited error output. > * > * @dev: device pointer > * @fmt: printf() like format string. > + * > + * Like DRM_ERROR() but won't flood the log. > */ > #define DRM_DEV_ERROR_RATELIMITED(dev, fmt, ...) \ > ({ \ > @@ -375,15 +377,27 @@ void drm_dev_dbg(const struct device *dev, enum drm_debug_category category, > }) > > /** > - * Debug output. > + * DRM_DEV_DEBUG() - Debug output for generic drm code > * > * @dev: device pointer > * @fmt: printf() like format string. > */ > #define DRM_DEV_DEBUG(dev, fmt, ...) \ > drm_dev_dbg(dev, DRM_UT_CORE, fmt, ##__VA_ARGS__) > +/** > + * DRM_DEV_DEBUG_DRIVER() - Debug output for vendor specific part of the driver > + * > + * @dev: device pointer > + * @fmt: printf() like format string. > + */ > #define DRM_DEV_DEBUG_DRIVER(dev, fmt, ...) \ > drm_dev_dbg(dev, DRM_UT_DRIVER, fmt, ##__VA_ARGS__) > +/** > + * DRM_DEV_DEBUG_KMS() - Debug output for modesetting code > + * > + * @dev: device pointer > + * @fmt: printf() like format string. > + */ > #define DRM_DEV_DEBUG_KMS(dev, fmt, ...) \ > drm_dev_dbg(dev, DRM_UT_KMS, fmt, ##__VA_ARGS__) > > -- > 2.26.2 >
diff --git a/include/drm/drm_print.h b/include/drm/drm_print.h index 1c9417430d08..f32d179e139d 100644 --- a/include/drm/drm_print.h +++ b/include/drm/drm_print.h @@ -338,7 +338,7 @@ void drm_dev_dbg(const struct device *dev, enum drm_debug_category category, const char *format, ...); /** - * Error output. + * DRM_DEV_ERROR() - Error output. * * @dev: device pointer * @fmt: printf() like format string. @@ -347,10 +347,12 @@ void drm_dev_dbg(const struct device *dev, enum drm_debug_category category, drm_dev_printk(dev, KERN_ERR, "*ERROR* " fmt, ##__VA_ARGS__) /** - * Rate limited error output. Like DRM_ERROR() but won't flood the log. + * DRM_DEV_ERROR_RATELIMITED() - Rate limited error output. * * @dev: device pointer * @fmt: printf() like format string. + * + * Like DRM_ERROR() but won't flood the log. */ #define DRM_DEV_ERROR_RATELIMITED(dev, fmt, ...) \ ({ \ @@ -375,15 +377,27 @@ void drm_dev_dbg(const struct device *dev, enum drm_debug_category category, }) /** - * Debug output. + * DRM_DEV_DEBUG() - Debug output for generic drm code * * @dev: device pointer * @fmt: printf() like format string. */ #define DRM_DEV_DEBUG(dev, fmt, ...) \ drm_dev_dbg(dev, DRM_UT_CORE, fmt, ##__VA_ARGS__) +/** + * DRM_DEV_DEBUG_DRIVER() - Debug output for vendor specific part of the driver + * + * @dev: device pointer + * @fmt: printf() like format string. + */ #define DRM_DEV_DEBUG_DRIVER(dev, fmt, ...) \ drm_dev_dbg(dev, DRM_UT_DRIVER, fmt, ##__VA_ARGS__) +/** + * DRM_DEV_DEBUG_KMS() - Debug output for modesetting code + * + * @dev: device pointer + * @fmt: printf() like format string. + */ #define DRM_DEV_DEBUG_KMS(dev, fmt, ...) \ drm_dev_dbg(dev, DRM_UT_KMS, fmt, ##__VA_ARGS__)
A kernel-doc markup should start with the identifier on its first line. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> --- include/drm/drm_print.h | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-)