From 595f8bdb227881a9bd57aed377e12d61a8475692 Mon Sep 17 00:00:00 2001 From: Jeremy Bettis Date: Mon, 29 Apr 2024 21:30:06 +0000 Subject: [PATCH] CHROMIUM: Fix #line Work around coreboot GCC preprocessor bug. BUG=b:272518464 TEST=Full coverage build Change-Id: I11ab3b63b6c3852dc3cd09ba4c1fa083dad5fef3 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/zephyr/+/5499200 Reviewed-by: Al Semjonovs Tested-by: Jeremy Bettis Commit-Queue: Jeremy Bettis --- kernel/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/init.c b/kernel/init.c index 89f176b8cb2..38dc7013e1b 100644 --- a/kernel/init.c +++ b/kernel/init.c @@ -42,7 +42,7 @@ * TODO(b/272518464): Work around coreboot GCC preprocessor bug. * #line marks the *next* line, so it is off by one. */ -#line 44 +#line 46 LOG_MODULE_REGISTER(os, CONFIG_KERNEL_LOG_LEVEL);