summaryrefslogtreecommitdiff
path: root/board/agah/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/agah/board.c')
-rw-r--r--board/agah/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/agah/board.c b/board/agah/board.c
index 57e4b36af8..fbcfc64c4d 100644
--- a/board/agah/board.c
+++ b/board/agah/board.c
@@ -37,7 +37,7 @@ __override void board_cbi_init(void)
static void board_chipset_resume(void)
{
/* Allow keyboard backlight to be enabled */
- gpio_set_level(GPIO_EC_KB_BL_EN_L, 0);
+ gpio_set_level(GPIO_EC_KB_BL_EN, 1);
}
DECLARE_HOOK(HOOK_CHIPSET_RESUME, board_chipset_resume, HOOK_PRIO_DEFAULT);
@@ -45,6 +45,6 @@ DECLARE_HOOK(HOOK_CHIPSET_RESUME, board_chipset_resume, HOOK_PRIO_DEFAULT);
static void board_chipset_suspend(void)
{
/* Turn off the keyboard backlight if it's on. */
- gpio_set_level(GPIO_EC_KB_BL_EN_L, 1);
+ gpio_set_level(GPIO_EC_KB_BL_EN, 0);
}
DECLARE_HOOK(HOOK_CHIPSET_SUSPEND, board_chipset_suspend, HOOK_PRIO_DEFAULT);