aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/purism
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2017-12-10 18:25:13 -0700
committerMartin Roth <martinroth@google.com>2017-12-11 18:54:58 +0000
commit888c9f6097db3164fbd657a56e3e3ce155f8c8fb (patch)
treea0887b38bea343f538dcb4c5d976569a4f7e2389 /src/mainboard/purism
parentbc5c3e75a422befd7335a530f7f041e986ff0977 (diff)
mainboard/purism/librem_skl: Fix line length > 80 characters
Make lint-stable was giving an error on this. Change-Id: I06d11d86151f683b82b6df537e3de8c52d33e8b4 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/22811 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Youness Alaoui <snifikino@gmail.com>
Diffstat (limited to 'src/mainboard/purism')
-rw-r--r--src/mainboard/purism/librem_skl/mainboard.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/purism/librem_skl/mainboard.c b/src/mainboard/purism/librem_skl/mainboard.c
index 37a7a01132..462b995ae0 100644
--- a/src/mainboard/purism/librem_skl/mainboard.c
+++ b/src/mainboard/purism/librem_skl/mainboard.c
@@ -43,7 +43,8 @@ const char *smbios_mainboard_serial_number(void)
}
}
- strncpy(serial_number, CONFIG_MAINBOARD_SERIAL_NUMBER, MAX_SERIAL_LENGTH);
+ strncpy(serial_number, CONFIG_MAINBOARD_SERIAL_NUMBER,
+ MAX_SERIAL_LENGTH);
return serial_number;
}