projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ff1086
)
drm/print: Add drm_printf_indent()
author
Noralf Trønnes
<noralf@tronnes.org>
Tue, 7 Nov 2017 19:13:39 +0000
(20:13 +0100)
committer
Noralf Trønnes
<noralf@tronnes.org>
Sat, 11 Nov 2017 10:20:32 +0000
(11:20 +0100)
Add drm_printf_indent() that adds tab indentation according to argument.
Indentation overflow is marked with an X.
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/20171107191348.17555-4-noralf@tronnes.org
include/drm/drm_print.h
patch
|
blob
|
blame
|
history
diff --git
a/include/drm/drm_print.h
b/include/drm/drm_print.h
index 7b9c86a6ca3e877358da70c8d5b2d630b882a4a9..7dbfdebec973e09cb0ac1448ab3ddf6e248d5452 100644
(file)
--- a/
include/drm/drm_print.h
+++ b/
include/drm/drm_print.h
@@
-80,6
+80,14
@@
void __drm_printfn_debug(struct drm_printer *p, struct va_format *vaf);
__printf(2, 3)
void drm_printf(struct drm_printer *p, const char *f, ...);
+/**
+ * drm_printf_indent - Print to a &drm_printer stream with indentation
+ * @printer: DRM printer
+ * @indent: Tab indentation level (max 5)
+ * @fmt: Format string
+ */
+#define drm_printf_indent(printer, indent, fmt, ...) \
+ drm_printf((printer), "%.*s" fmt, (indent), "\t\t\t\t\tX", ##__VA_ARGS__)
/**
* drm_seq_file_printer - construct a &drm_printer that outputs to &seq_file