summaryrefslogtreecommitdiff
path: root/lib/igt_core.h
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-07-14 23:02:18 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-07-14 23:21:04 +0200
commit3f50598fb7399bafed01f7b44f4a4f5a85a9f13c (patch)
treec05e8be8bf857e92a8d3ec10423d880976dbc841 /lib/igt_core.h
parentbcb2c65a14c37433598404bf4d8c3a8dfc7a842a (diff)
lib/igt_core: Fixup gtkdoc for logging functions
Without the () gtkdoc won't recognize them as function references. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'lib/igt_core.h')
-rw-r--r--lib/igt_core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/igt_core.h b/lib/igt_core.h
index 8438d006..a30d0d14 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -457,7 +457,7 @@ void igt_vlog(enum igt_log_level level, const char *format, va_list args);
* igt_debug:
* @...: format string and optional arguments
*
- * Wrapper for igt_log for message at the IGT_LOG_DEBUG level.
+ * Wrapper for igt_log() for message at the IGT_LOG_DEBUG level.
*/
#define igt_debug(f...) igt_log(IGT_LOG_DEBUG, f)
@@ -465,7 +465,7 @@ void igt_vlog(enum igt_log_level level, const char *format, va_list args);
* igt_info:
* @...: format string and optional arguments
*
- * Wrapper for igt_log for message at the IGT_LOG_INFO level.
+ * Wrapper for igt_log() for message at the IGT_LOG_INFO level.
*/
#define igt_info(f...) igt_log(IGT_LOG_INFO, f)
@@ -473,7 +473,7 @@ void igt_vlog(enum igt_log_level level, const char *format, va_list args);
* igt_warn:
* @...: format string and optional arguments
*
- * Wrapper for igt_log for message at the IGT_LOG_WARN level.
+ * Wrapper for igt_log() for message at the IGT_LOG_WARN level.
*/
#define igt_warn(f...) igt_log(IGT_LOG_WARN, f)
extern enum igt_log_level igt_log_level;