From: Russell King Date: Fri, 31 Mar 2017 10:03:20 +0000 (+0100) Subject: dma-buf: align debugfs output X-Git-Tag: v4.12-rc1~116^2~10^2~71 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=da6c8f5e2a63de7148dfffa8bffab1be02f378c6;p=karo-tx-linux.git dma-buf: align debugfs output Align the heading with the values output from debugfs. Signed-off-by: Russell King Signed-off-by: Sumit Semwal Link: http://patchwork.freedesktop.org/patch/msgid/E1cttOq-0006GX-U7@rmk-PC.armlinux.org.uk --- diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c index ebaf1923ad6b..f72aaacbe023 100644 --- a/drivers/dma-buf/dma-buf.c +++ b/drivers/dma-buf/dma-buf.c @@ -1072,7 +1072,8 @@ static int dma_buf_debug_show(struct seq_file *s, void *unused) return ret; seq_puts(s, "\nDma-buf Objects:\n"); - seq_puts(s, "size\tflags\tmode\tcount\texp_name\n"); + seq_printf(s, "%-8s\t%-8s\t%-8s\t%-8s\texp_name\n", + "size", "flags", "mode", "count"); list_for_each_entry(buf_obj, &db_list.head, list_node) { ret = mutex_lock_interruptible(&buf_obj->lock);