global: Refactor get_option usage
Restructure get_option() calls to avoid unnecessary return value checks by pre-assigning defaults to the options being retrieved. Change-Id: I9159afe149a8eeed0785d1efd6eee8420b88b8f4 Signed-off-by: Varad Gautam <varadgautam@gmail.com> Reviewed-on: http://review.coreboot.org/8631 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Marc Jones <marc.jones@se-eng.com>
This commit is contained in:
@ -37,8 +37,8 @@ int console_log_level(int msg_level)
|
||||
void console_init(void)
|
||||
{
|
||||
#if !defined(__PRE_RAM__)
|
||||
if(get_option(&console_loglevel, "debug_level") != CB_SUCCESS)
|
||||
console_loglevel=CONFIG_DEFAULT_CONSOLE_LOGLEVEL;
|
||||
console_loglevel = CONFIG_DEFAULT_CONSOLE_LOGLEVEL;
|
||||
get_option(&console_loglevel, "debug_level");
|
||||
#endif
|
||||
|
||||
#if CONFIG_EARLY_PCI_BRIDGE && !defined(__SMM__)
|
||||
|
Reference in New Issue
Block a user