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
|
@ -29,7 +29,7 @@ void fsp_print_header_info(const struct fsp_header *hdr)
|
||||||
revision.val = hdr->fsp_revision;
|
revision.val = hdr->fsp_revision;
|
||||||
|
|
||||||
printk(BIOS_SPEW, "Spec version: v%u.%u\n", (hdr->spec_version >> 4),
|
printk(BIOS_SPEW, "Spec version: v%u.%u\n", (hdr->spec_version >> 4),
|
||||||
hdr->spec_version & 0xf);
|
hdr->spec_version & 0xf);
|
||||||
printk(BIOS_SPEW, "Revision: %u.%u.%u, Build Number %u\n",
|
printk(BIOS_SPEW, "Revision: %u.%u.%u, Build Number %u\n",
|
||||||
revision.rev.major,
|
revision.rev.major,
|
||||||
revision.rev.minor,
|
revision.rev.minor,
|
||||||
|
|
|
@ -21,8 +21,8 @@ void fsp_display_upd_value(const char *name, size_t size, uint64_t old,
|
||||||
if (old == new) {
|
if (old == new) {
|
||||||
printk(BIOS_SPEW, " 0x%0*llx: %s\n", (int)size, new, name);
|
printk(BIOS_SPEW, " 0x%0*llx: %s\n", (int)size, new, name);
|
||||||
} else {
|
} else {
|
||||||
printk(BIOS_SPEW, " 0x%0*llx --> 0x%0*llx: %s\n", (int)size, old,
|
printk(BIOS_SPEW, " 0x%0*llx --> 0x%0*llx: %s\n", (int)size,
|
||||||
(int)size, new, name);
|
old, (int)size, new, name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue