aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mainboard/getac/p470/early_init.c6
-rw-r--r--src/mainboard/kontron/986lcd-m/early_init.c4
-rw-r--r--src/mainboard/roda/rk886ex/early_init.c4
3 files changed, 10 insertions, 4 deletions
diff --git a/src/mainboard/getac/p470/early_init.c b/src/mainboard/getac/p470/early_init.c
index 1ce44ae9d7..8272d5eb8a 100644
--- a/src/mainboard/getac/p470/early_init.c
+++ b/src/mainboard/getac/p470/early_init.c
@@ -50,8 +50,10 @@ void mainboard_pre_raminit_config(int s3_resume)
void mainboard_lpc_decode(void)
{
int lpt_en = 0;
- if (read_option(lpt, 0) != 0)
- lpt_en = LPT_LPC_EN;
+ u8 val;
+
+ if (get_option(&val, "lpt") == CB_SUCCESS && val)
+ lpt_en = LPT_LPC_EN; /* enable LPT */
// decode range
pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_IO_DEC, 0x0007);
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);
diff --git a/src/mainboard/roda/rk886ex/early_init.c b/src/mainboard/roda/rk886ex/early_init.c
index 6f0a12c335..597501a97b 100644
--- a/src/mainboard/roda/rk886ex/early_init.c
+++ b/src/mainboard/roda/rk886ex/early_init.c
@@ -32,7 +32,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_write_config16(PCI_DEV(0, 0x1f, 0), LPC_IO_DEC, 0x0007);