diff options
Diffstat (limited to 'src/southbridge/intel/common/smihandler.c')
-rw-r--r-- | src/southbridge/intel/common/smihandler.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/southbridge/intel/common/smihandler.c b/src/southbridge/intel/common/smihandler.c index 733c625f6c..db034fc245 100644 --- a/src/southbridge/intel/common/smihandler.c +++ b/src/southbridge/intel/common/smihandler.c @@ -95,13 +95,12 @@ __weak void southbridge_smm_xhci_sleep(u8 slp_type) static int power_on_after_fail(void) { - u8 s5pwr = CONFIG_MAINBOARD_POWER_FAILURE_STATE; - /* save and recover RTC port values */ u8 tmp70, tmp72; tmp70 = inb(0x70); tmp72 = inb(0x72); - get_option(&s5pwr, "power_on_after_fail"); + const int s5pwr = get_int_option("power_on_after_fail", + CONFIG_MAINBOARD_POWER_FAILURE_STATE); outb(tmp70, 0x70); outb(tmp72, 0x72); |