diff options
author | Martin Roth <martinroth@google.com> | 2017-07-23 16:22:25 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-07-25 14:26:20 +0000 |
commit | 7f35d3aa160aa1a43ec4215a7816554b8bab14ed (patch) | |
tree | ed1a21755982ee405c779ba3e66ceb01cedee66b /src/device/device_util.c | |
parent | 1d5e240ea3e68543716ec876d9250f20ce7689f6 (diff) | |
download | coreboot-7f35d3aa160aa1a43ec4215a7816554b8bab14ed.tar.xz |
src/device: Fix checkpatch warning: no spaces at the start of a line
This excludes some files in the device/oprom/x86emu folder which
are mostly spaces, and which I felt should be handled separately.
debug.c, decode.c, fpu.c, ops.c, ops2.c, & prim_ops.c
Change-Id: I5c12d3fc942c9ad99bbe6e6e54db93e5a8402392
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/20730
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/device/device_util.c')
-rw-r--r-- | src/device/device_util.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/device/device_util.c b/src/device/device_util.c index 859de319fa..762f0e76ff 100644 --- a/src/device/device_util.c +++ b/src/device/device_util.c @@ -812,11 +812,11 @@ static void resource_tree(struct device *root, int debug_level, int depth) indent[i] = ' '; indent[i] = '\0'; - do_printk(BIOS_DEBUG, "%s%s", indent, dev_path(root)); - if (root->link_list && root->link_list->children) - do_printk(BIOS_DEBUG, " child on link 0 %s", - dev_path(root->link_list->children)); - do_printk(BIOS_DEBUG, "\n"); + do_printk(BIOS_DEBUG, "%s%s", indent, dev_path(root)); + if (root->link_list && root->link_list->children) + do_printk(BIOS_DEBUG, " child on link 0 %s", + dev_path(root->link_list->children)); + do_printk(BIOS_DEBUG, "\n"); for (res = root->resource_list; res; res = res->next) { do_printk(debug_level, "%s%s resource base %llx size %llx " |