diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2017-03-31 11:03:20 +0100 |
---|---|---|
committer | Sumit Semwal <sumit.semwal@linaro.org> | 2017-04-03 21:57:20 +0530 |
commit | da6c8f5e2a63de7148dfffa8bffab1be02f378c6 (patch) | |
tree | e4204a7f7cc7a3da5a27b91d6f0f8515aba6fca5 /drivers/dma-buf | |
parent | a68ee76f4a2880c12fa18359a0e85e6a05c95147 (diff) | |
download | talos-op-linux-da6c8f5e2a63de7148dfffa8bffab1be02f378c6.tar.gz talos-op-linux-da6c8f5e2a63de7148dfffa8bffab1be02f378c6.zip |
dma-buf: align debugfs output
Align the heading with the values output from debugfs.
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Sumit Semwal <sumit.semwal@linaro.org>
Link: http://patchwork.freedesktop.org/patch/msgid/E1cttOq-0006GX-U7@rmk-PC.armlinux.org.uk
Diffstat (limited to 'drivers/dma-buf')
-rw-r--r-- | drivers/dma-buf/dma-buf.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |