diff options
author | Ivy Jian <ivy_jian@compal.corp-partner.google.com> | 2021-04-22 18:12:49 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-04-30 23:17:13 +0000 |
commit | 2415d9b2fb203bbfef820389ec607f483f92ebc0 (patch) | |
tree | baeedfbc0acadc0ff8a8f23951ef4aa94f60d56d | |
parent | 6f0b361aee6ed9eb5df7261c8e90a8f6e5b7acb1 (diff) |
mb/google/mancomb: Remove lid swtich
There is no lid switch in mancomb so remove it.
Will replace the lid switch with a fake gpio in depthcharge.
BUG=b:182211161
TEST=Depthcharge no longer halts complaining that coreboot didn't sample
the pin
Signed-off-by: Ivy Jian <ivy_jian@compal.corp-partner.google.com>
Change-Id: Ifd0fcec9557bf7ebad64ce9342d3b50eb511522b
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52602
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
-rw-r--r-- | src/mainboard/google/mancomb/chromeos.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mainboard/google/mancomb/chromeos.c b/src/mainboard/google/mancomb/chromeos.c index d2ef97ef91..4140a0a238 100644 --- a/src/mainboard/google/mancomb/chromeos.c +++ b/src/mainboard/google/mancomb/chromeos.c @@ -8,7 +8,6 @@ void fill_lb_gpios(struct lb_gpios *gpios) { struct lb_gpio chromeos_gpios[] = { - {-1, ACTIVE_HIGH, get_lid_switch(), "lid"}, {-1, ACTIVE_HIGH, 0, "power"}, }; lb_add_gpios(gpios, chromeos_gpios, ARRAY_SIZE(chromeos_gpios)); |