drivers/intel/fsp2_0: Wrap lines at 80 columns
Fix the following warning detected by checkpatch.pl: WARNING: line over 80 characters TEST=Build and run on Galileo Gen2 Change-Id: I0e5acef53d558948b7713cfe608cd346ddc5e9fe Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com> Reviewed-on: https://review.coreboot.org/18746 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
e686ee8bf7
commit
7732b35fb7
|
@ -21,8 +21,8 @@ void fsp_display_upd_value(const char *name, size_t size, uint64_t old,
|
|||
if (old == new) {
|
||||
printk(BIOS_SPEW, " 0x%0*llx: %s\n", (int)size, new, name);
|
||||
} else {
|
||||
printk(BIOS_SPEW, " 0x%0*llx --> 0x%0*llx: %s\n", (int)size, old,
|
||||
(int)size, new, name);
|
||||
printk(BIOS_SPEW, " 0x%0*llx --> 0x%0*llx: %s\n", (int)size,
|
||||
old, (int)size, new, name);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue