Fix incorrect fallback value for HWP_Mode (missing from 0b21989)

This commit is contained in:
Francesco Palmarini 2021-05-25 17:09:46 +02:00 committed by GitHub
parent 4277b17e08
commit 4d9dceae83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -930,7 +930,7 @@ def main():
undervolt(config)
set_icc_max(config)
set_hwp(config.getboolean('AC', 'HWP_Mode', fallback=False))
set_hwp(config.getboolean('AC', 'HWP_Mode', fallback=None))
exit_event = Event()
thread = Thread(target=power_thread, args=(config, regs, exit_event))