Commit 091756bb authored by Haneen Mohammed's avatar Haneen Mohammed Committed by Sean Paul

drm/print: Update old comment style

Remove old comment style used by doxygen.
And remove comment left from commit 99cdb35e ("drm/doc: move printf
helpers out of drmP.h") after refactoring drmP.h.
Signed-off-by: default avatarHaneen Mohammed <hamohammed.sa@gmail.com>
Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/4d89eef3945dbffd402d2ecdc130108b0565c158.1508297716.git.hamohammed.sa@gmail.com
parent 02c9656b
...@@ -179,9 +179,8 @@ void drm_dev_printk(const struct device *dev, const char *level, ...@@ -179,9 +179,8 @@ void drm_dev_printk(const struct device *dev, const char *level,
__printf(3, 4) __printf(3, 4)
void drm_printk(const char *level, unsigned int category, void drm_printk(const char *level, unsigned int category,
const char *format, ...); const char *format, ...);
/***********************************************************************/
/** \name Macros to make printk easier */ /* Macros to make printk easier */
/*@{*/
#define _DRM_PRINTK(once, level, fmt, ...) \ #define _DRM_PRINTK(once, level, fmt, ...) \
do { \ do { \
...@@ -206,8 +205,8 @@ void drm_printk(const char *level, unsigned int category, ...@@ -206,8 +205,8 @@ void drm_printk(const char *level, unsigned int category,
/** /**
* Error output. * Error output.
* *
* \param fmt printf() like format string. * @dev: device pointer
* \param arg arguments * @fmt: printf() like format string.
*/ */
#define DRM_DEV_ERROR(dev, fmt, ...) \ #define DRM_DEV_ERROR(dev, fmt, ...) \
drm_dev_printk(dev, KERN_ERR, DRM_UT_NONE, __func__, " *ERROR*",\ drm_dev_printk(dev, KERN_ERR, DRM_UT_NONE, __func__, " *ERROR*",\
...@@ -218,8 +217,8 @@ void drm_printk(const char *level, unsigned int category, ...@@ -218,8 +217,8 @@ void drm_printk(const char *level, unsigned int category,
/** /**
* Rate limited error output. Like DRM_ERROR() but won't flood the log. * Rate limited error output. Like DRM_ERROR() but won't flood the log.
* *
* \param fmt printf() like format string. * @dev: device pointer
* \param arg arguments * @fmt: printf() like format string.
*/ */
#define DRM_DEV_ERROR_RATELIMITED(dev, fmt, ...) \ #define DRM_DEV_ERROR_RATELIMITED(dev, fmt, ...) \
({ \ ({ \
...@@ -249,8 +248,8 @@ void drm_printk(const char *level, unsigned int category, ...@@ -249,8 +248,8 @@ void drm_printk(const char *level, unsigned int category,
/** /**
* Debug output. * Debug output.
* *
* \param fmt printf() like format string. * @dev: device pointer
* \param arg arguments * @fmt: printf() like format string.
*/ */
#define DRM_DEV_DEBUG(dev, fmt, args...) \ #define DRM_DEV_DEBUG(dev, fmt, args...) \
drm_dev_printk(dev, KERN_DEBUG, DRM_UT_CORE, __func__, "", fmt, \ drm_dev_printk(dev, KERN_DEBUG, DRM_UT_CORE, __func__, "", fmt, \
...@@ -301,8 +300,8 @@ void drm_printk(const char *level, unsigned int category, ...@@ -301,8 +300,8 @@ void drm_printk(const char *level, unsigned int category,
/** /**
* Rate limited debug output. Like DRM_DEBUG() but won't flood the log. * Rate limited debug output. Like DRM_DEBUG() but won't flood the log.
* *
* \param fmt printf() like format string. * @dev: device pointer
* \param arg arguments * @fmt: printf() like format string.
*/ */
#define DRM_DEV_DEBUG_RATELIMITED(dev, fmt, args...) \ #define DRM_DEV_DEBUG_RATELIMITED(dev, fmt, args...) \
DEV__DRM_DEFINE_DEBUG_RATELIMITED(dev, CORE, fmt, ##args) DEV__DRM_DEFINE_DEBUG_RATELIMITED(dev, CORE, fmt, ##args)
...@@ -321,10 +320,4 @@ void drm_printk(const char *level, unsigned int category, ...@@ -321,10 +320,4 @@ void drm_printk(const char *level, unsigned int category,
#define DRM_DEBUG_PRIME_RATELIMITED(fmt, args...) \ #define DRM_DEBUG_PRIME_RATELIMITED(fmt, args...) \
DRM_DEV_DEBUG_PRIME_RATELIMITED(NULL, fmt, ##args) DRM_DEV_DEBUG_PRIME_RATELIMITED(NULL, fmt, ##args)
/* Format strings and argument splitters to simplify printing
* various "complex" objects
*/
/*@}*/
#endif /* DRM_PRINT_H_ */ #endif /* DRM_PRINT_H_ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment