From bee82ab798c542051bda684fed3921be5923c84e Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Thu, 26 Dec 2019 10:57:43 +0200 Subject: Replace last uses of read_option() with get_option() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I63e80953195a6c524392da42b268efe3012ed41b Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/c/coreboot/+/37953 Reviewed-by: Angel Pons Reviewed-by: Paul Menzel Reviewed-by: Nico Huber Tested-by: build bot (Jenkins) --- src/mainboard/kontron/986lcd-m/early_init.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (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 0423b2c373..80ce896323 100644 --- a/src/mainboard/kontron/986lcd-m/early_init.c +++ b/src/mainboard/kontron/986lcd-m/early_init.c @@ -29,7 +29,9 @@ void mainboard_lpc_decode(void) { int lpt_en = 0; - if (read_option(lpt, 0) != 0) + u8 val; + + if (get_option(&val, "lpt") == CB_SUCCESS && val) 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