aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/fizz/chromeos.c
diff options
context:
space:
mode:
authorNaresh G Solanki <naresh.solanki@intel.com>2017-04-08 17:47:13 +0530
committerMartin Roth <martinroth@google.com>2017-04-24 19:32:24 +0200
commitf3a117908c89d29b846c0fcdd9e61c2357e18ed2 (patch)
tree1e632d3f78ffe88e7370a4f9a3ee61aa35ced1d1 /src/mainboard/google/fizz/chromeos.c
parent561f7fcf67c6c3442564bbff71276fe3a578b233 (diff)
mb/google/fizz: Set lid status as open
Lid switch is not available. Hence report lid state as always open. Change-Id: Ia9c82c3ad323912bad51cf55ed80a37b3110b1ef Signed-off-by: Naresh G Solanki <naresh.solanki@intel.com> Reviewed-on: https://review.coreboot.org/19219 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Sumeet R Pawnikar <sumeet.r.pawnikar@intel.com>
Diffstat (limited to 'src/mainboard/google/fizz/chromeos.c')
-rw-r--r--src/mainboard/google/fizz/chromeos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/fizz/chromeos.c b/src/mainboard/google/fizz/chromeos.c
index bde805f42c..e52ac72662 100644
--- a/src/mainboard/google/fizz/chromeos.c
+++ b/src/mainboard/google/fizz/chromeos.c
@@ -28,7 +28,7 @@ void fill_lb_gpios(struct lb_gpios *gpios)
struct lb_gpio chromeos_gpios[] = {
{-1, ACTIVE_HIGH, get_write_protect_state(), "write protect"},
{-1, ACTIVE_HIGH, get_recovery_mode_switch(), "recovery"},
- {-1, ACTIVE_HIGH, get_lid_switch(), "lid"},
+ {-1, ACTIVE_HIGH, 1, "lid"}, /* Lid switch always open */
{-1, ACTIVE_HIGH, 0, "power"},
{-1, ACTIVE_HIGH, gfx_get_init_done(), "oprom"},
{GPIO_EC_IN_RW, ACTIVE_HIGH, gpio_get(GPIO_EC_IN_RW),