From 38f89f37bf791496dc7add7f4d18bc0cf3115750 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Mon, 2 Nov 2020 22:29:07 +0100 Subject: mb/**/early_init.c: Use get_int_option() Change-Id: I460cad0cc671be830d0fa0f68a531acaea7effcc Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/47134 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph --- src/mainboard/kontron/986lcd-m/early_init.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/mainboard/kontron/986lcd-m') diff --git a/src/mainboard/kontron/986lcd-m/early_init.c b/src/mainboard/kontron/986lcd-m/early_init.c index 90221981dd..ff3babb45e 100644 --- a/src/mainboard/kontron/986lcd-m/early_init.c +++ b/src/mainboard/kontron/986lcd-m/early_init.c @@ -14,9 +14,8 @@ void mainboard_lpc_decode(void) { int lpt_en = 0; - u8 val; - if (get_option(&val, "lpt") == CB_SUCCESS && val) + if (get_int_option("lpt", 0)) lpt_en = LPT_LPC_EN; /* enable LPT */ pci_update_config16(PCI_DEV(0, 0x1f, 0), LPC_EN, ~LPT_LPC_EN, lpt_en); -- cgit v1.2.3