From e76f15f4fdf2d2094b351a6a1a95dec1c63d017c Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Mon, 19 Apr 2021 15:20:28 +0200 Subject: src: Replace remaining {get,set}_option() instances With this change, the type-unsafe {get,set}_option() API functions are no longer used directly. The old API gets dropped in a follow-up. Change-Id: Id3f3e172c850d50a7d2f348b1c3736969c73837d Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/52512 Reviewed-by: Patrick Rudolph Reviewed-by: Patrick Rudolph Tested-by: build bot (Jenkins) --- src/console/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/console') diff --git a/src/console/init.c b/src/console/init.c index c59807785c..fdc1467cdd 100644 --- a/src/console/init.c +++ b/src/console/init.c @@ -26,7 +26,7 @@ static void init_log_level(void) console_loglevel = get_console_loglevel(); if (!FIRST_CONSOLE) - get_option(&console_loglevel, "debug_level"); + console_loglevel = get_int_option("debug_level", console_loglevel); } int console_log_level(int msg_level) -- cgit v1.2.3