diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-07-04 11:41:31 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-07-05 10:52:19 +0000 |
commit | d19cc1119f64d04b33134925e602d29709d7577e (patch) | |
tree | be9804800c995ac24189170fd9e190eb178c5f23 /src/device/device_util.c | |
parent | a932a471cc148c76016f980f92c8630ebb4409c0 (diff) |
device: Reflow strings in printk statements
To ease finding some log messages, reflow their strings to use one line.
Tested with BUILD_TIMELESS=1, Asrock B85M Pro4 remains identical.
Change-Id: I5284429ca6d07debf2d6c4fdbffa286140fb7694
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56057
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/device/device_util.c')
-rw-r--r-- | src/device/device_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/device_util.c b/src/device/device_util.c index a5d1860064..8ee8afce27 100644 --- a/src/device/device_util.c +++ b/src/device/device_util.c @@ -870,8 +870,8 @@ void mmconf_resource(struct device *dev, unsigned long index) resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE | IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED; - printk(BIOS_DEBUG, "Adding PCIe enhanced config space BAR " - "0x%08lx-0x%08lx.\n", (unsigned long)(resource->base), + printk(BIOS_DEBUG, "Adding PCIe enhanced config space BAR 0x%08lx-0x%08lx.\n", + (unsigned long)(resource->base), (unsigned long)(resource->base + resource->size)); } |