mainboard/google/kahlee: Turn on backlight for all SKUs

Careena uses a different keyboard backlight method, so let the EC
handle the different SKUs and backlight methods.

BUG=b:80106042
TEST=None

Change-Id: I47f7a9ac13538f0216fbb0f64fdd22f66097820c
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/26969
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
This commit is contained in:
Martin Roth 2018-06-07 11:21:55 -06:00
parent c24e4a456f
commit b8a05e29ac
1 changed files with 1 additions and 4 deletions

View File

@ -18,9 +18,6 @@
void variant_romstage_entry(int s3_resume)
{
uint32_t sku = google_chromeec_get_sku_id();
/* Based on SKU, turn on keyboard backlight to show system is booting */
if (sku <= 6 && !s3_resume)
if (!s3_resume)
google_chromeec_kbbacklight(75);
}