From 7340217262759c3daab41466138ba7d40a8f13d5 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Fri, 10 Mar 2017 15:23:24 -0800 Subject: src/lib: 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: I5fa3f8e950e2f0c60bd0e8f030342dc8c0469299 Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/18758 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/lib/stack.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/lib/stack.c') diff --git a/src/lib/stack.c b/src/lib/stack.c index 00c145aa3f..a66b6a1bc8 100644 --- a/src/lib/stack.c +++ b/src/lib/stack.c @@ -18,7 +18,8 @@ it with the version available from LANL. */ /* Copyright 2000, Ron Minnich, Advanced Computing Lab, LANL * rminnich@lanl.gov - * Copyright (C) 2015 Timothy Pearson , Raptor Engineering + * Copyright (C) 2015 Timothy Pearson , + * Raptor Engineering */ #include @@ -34,7 +35,8 @@ int checkstack(void *top_of_stack, int core) u32 *stack = (u32 *) (top_of_stack - stack_size); if (stack[0] != 0xDEADBEEF) { - printk(BIOS_ERR, "Stack overrun on CPU%d (address %p overwritten). " + printk(BIOS_ERR, + "Stack overrun on CPU%d (address %p overwritten). " "Increase stack from current %zu bytes\n", core, stack, stack_size); BUG(); -- cgit v1.2.3