diff options
author | Daisuke Nojiri <dnojiri@chromium.org> | 2017-04-27 12:48:08 -0700 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2017-05-09 23:20:07 -0700 |
commit | e8982ea3cd66941e518b829a37834a534e71b3bc (patch) | |
tree | f0c54e0a9a710c52fef3651d426476c57aa7920a /power | |
parent | 600df851c5565237a38f5ba0edda2beef8db618c (diff) | |
download | chrome-ec-e8982ea3cd66941e518b829a37834a534e71b3bc.tar.gz |
Allow lid-less configuration
power_button_x86.c and switch.c assume there is a lid switch. This
patch separate them so that a board with power button but with no
lid can be configured properly.
This patch also moves backlight control to the board directory
so that only the boards with a backlight turn it on/off when power
state changes.
BUG=none
BRANCH=none
TEST=boot fizz. make buildall.
Change-Id: If4070cdc4b1221fae68b35ec3497335d81f192fd
Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/489602
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'power')
-rw-r--r-- | power/intel_x86.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/power/intel_x86.c b/power/intel_x86.c index 6b87c88d83..c9e28f3d6f 100644 --- a/power/intel_x86.c +++ b/power/intel_x86.c @@ -295,8 +295,6 @@ enum power_state common_intel_x86_power_handle_state(enum power_state state) return POWER_S3S5; } - gpio_set_level(GPIO_ENABLE_BACKLIGHT, 1); - /* Enable wireless */ wireless_set_state(WIRELESS_ON); @@ -321,8 +319,6 @@ enum power_state common_intel_x86_power_handle_state(enum power_state state) /* Call hooks before we remove power rails */ hook_notify(HOOK_CHIPSET_SUSPEND); - gpio_set_level(GPIO_ENABLE_BACKLIGHT, 0); - /* Suspend wireless */ wireless_set_state(WIRELESS_SUSPEND); |