diff options
Diffstat (limited to 'src/ec/lenovo/h8/h8.c')
-rw-r--r-- | src/ec/lenovo/h8/h8.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/ec/lenovo/h8/h8.c b/src/ec/lenovo/h8/h8.c index da5b478646..8fffd5a754 100644 --- a/src/ec/lenovo/h8/h8.c +++ b/src/ec/lenovo/h8/h8.c @@ -160,12 +160,19 @@ static void h8_enable(device_t dev) { struct ec_lenovo_h8_config *conf = dev->chip_info; u8 val, tmp; - u8 beepmask0, beepmask1; + u8 beepmask0, beepmask1, config1; h8_log_ec_version(); ec_write(H8_CONFIG0, conf->config0); - ec_write(H8_CONFIG1, conf->config1); + config1 = conf->config1; + + if (conf->has_keyboard_backlight) { + if (get_option(&val, "backlight") != CB_SUCCESS) + val = 0; /* Both backlights. */ + config1 = (config1 & 0xf3) | ((val & 0x3) << 2); + } + ec_write(H8_CONFIG1, config1); ec_write(H8_CONFIG2, conf->config2); ec_write(H8_CONFIG3, conf->config3); |