summaryrefslogtreecommitdiff
path: root/baseboard/guybrush/baseboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'baseboard/guybrush/baseboard.c')
-rw-r--r--baseboard/guybrush/baseboard.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/baseboard/guybrush/baseboard.c b/baseboard/guybrush/baseboard.c
index 51f8e44f35..564133c55f 100644
--- a/baseboard/guybrush/baseboard.c
+++ b/baseboard/guybrush/baseboard.c
@@ -908,7 +908,6 @@ static void baseboard_chipset_suspend(void)
{
/* Disable display and keyboard backlights. */
gpio_set_level(GPIO_EC_DISABLE_DISP_BL, 1);
- gpio_set_level(GPIO_EN_KB_BL, 0);
ioex_set_level(IOEX_USB_A1_RETIMER_EN, 0);
}
DECLARE_HOOK(HOOK_CHIPSET_SUSPEND, baseboard_chipset_suspend,
@@ -918,7 +917,6 @@ static void baseboard_chipset_resume(void)
{
/* Enable display and keyboard backlights. */
gpio_set_level(GPIO_EC_DISABLE_DISP_BL, 0);
- gpio_set_level(GPIO_EN_KB_BL, 1);
ioex_set_level(IOEX_USB_A1_RETIMER_EN, 1);
/* Some retimers take several ms to be ready, so defer setup call */
hook_call_deferred(&baseboard_a1_retimer_setup_data, 20 * MSEC);