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:
Lee Leahy 2017-03-10 08:48:13 -08:00
parent e686ee8bf7
commit 7732b35fb7
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ void fsp_print_header_info(const struct fsp_header *hdr)
revision.val = hdr->fsp_revision;
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",
revision.rev.major,
revision.rev.minor,

View File

@ -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);
}
}