aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2014-09-18 13:00:03 +0000
committerEd Maste <emaste@FreeBSD.org>2014-09-18 13:00:03 +0000
commit7f4b01c1fa1e57f1d744f4511df2feaf0c5b996e (patch)
tree478cbd6239b23b797c85218063a6a9dcefc8d42a /sys
parent46867de5dd40ccd0d047dd4ef97fe62500e2c224 (diff)
downloadsrc-7f4b01c1fa1e57f1d744f4511df2feaf0c5b996e.tar.gz
src-7f4b01c1fa1e57f1d744f4511df2feaf0c5b996e.zip
Wrap long lines introduced in r268227
Notes
Notes: svn path=/head/; revision=271757
Diffstat (limited to 'sys')
-rw-r--r--sys/boot/amd64/efi/bootinfo.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/boot/amd64/efi/bootinfo.c b/sys/boot/amd64/efi/bootinfo.c
index af8ae97ec02a..90798e888323 100644
--- a/sys/boot/amd64/efi/bootinfo.c
+++ b/sys/boot/amd64/efi/bootinfo.c
@@ -236,10 +236,14 @@ bi_load_efi_data(struct preloaded_file *kfp)
if (efi_find_framebuffer(&efifb) == 0) {
printf("EFI framebuffer information:\n");
- printf("addr, size 0x%lx, 0x%lx\n", efifb.fb_addr, efifb.fb_size);
- printf("dimensions %d x %d\n", efifb.fb_width, efifb.fb_height);
+ printf("addr, size 0x%lx, 0x%lx\n", efifb.fb_addr,
+ efifb.fb_size);
+ printf("dimensions %d x %d\n", efifb.fb_width,
+ efifb.fb_height);
printf("stride %d\n", efifb.fb_stride);
- printf("masks 0x%08x, 0x%08x, 0x%08x, 0x%08x\n", efifb.fb_mask_red, efifb.fb_mask_green, efifb.fb_mask_blue, efifb.fb_mask_reserved);
+ printf("masks 0x%08x, 0x%08x, 0x%08x, 0x%08x\n",
+ efifb.fb_mask_red, efifb.fb_mask_green, efifb.fb_mask_blue,
+ efifb.fb_mask_reserved);
file_addmetadata(kfp, MODINFOMD_EFI_FB, sizeof(efifb), &efifb);
}