]> Pileus Git - ~andy/linux/commitdiff
framebuffer: Add fb_<level> convenience logging macros
authorJoe Perches <joe@perches.com>
Fri, 20 Sep 2013 01:35:54 +0000 (18:35 -0700)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Tue, 29 Oct 2013 10:53:04 +0000 (12:53 +0200)
Add fb_<level> convenience macros for emitting the
"fb%d: ", struct fb_info->node value.

Neatens and shortens the code a bit.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
include/linux/fb.h

index ffac70aab3e96bb62de132658e5a8513de8c0cab..70c4836e4a9f8fb16dd578bbbcfa25ecfec0b129 100644 (file)
@@ -792,4 +792,16 @@ extern int fb_find_mode(struct fb_var_screeninfo *var,
                        const struct fb_videomode *default_mode,
                        unsigned int default_bpp);
 
+/* Convenience logging macros */
+#define fb_err(fb_info, fmt, ...)                                      \
+       pr_err("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
+#define fb_notice(info, fmt, ...)                                      \
+       pr_notice("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
+#define fb_warn(fb_info, fmt, ...)                                     \
+       pr_warn("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
+#define fb_info(fb_info, fmt, ...)                                     \
+       pr_info("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
+#define fb_dbg(fb_info, fmt, ...)                                      \
+       pr_debug("fb%d: " fmt, (fb_info)->node, ##__VA_ARGS__)
+
 #endif /* _LINUX_FB_H */