aboutsummaryrefslogtreecommitdiff
path: root/util/sconfig/main.c
diff options
context:
space:
mode:
authorMartin Roth <martin@coreboot.org>2021-07-10 16:37:39 -0600
committerMartin Roth <martinroth@google.com>2021-07-14 20:24:00 +0000
commit299558874c5c17a1294595bf3d2b6f0d0f7fcfc4 (patch)
tree8b484948280a5fc1f4a55c27f67fc31c33400793 /util/sconfig/main.c
parent8916a8d802b259ab5d283d73f476de45a477c539 (diff)
util/sconfig: Remove unused devicetree keywords ESPI & LPC
The ESPI & LPC keywords were added for the zork program, but it was found that they weren't needed, so they were never used. BUG=None TEST=Build Signed-off-by: Martin Roth <martin@coreboot.org> Change-Id: I3a78afc55477d62eac8056e2ca4bcdd3ab12ea47 Reviewed-on: https://review.coreboot.org/c/coreboot/+/56197 Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/sconfig/main.c')
-rw-r--r--util/sconfig/main.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/util/sconfig/main.c b/util/sconfig/main.c
index 258a1e40dc..91c079a624 100644
--- a/util/sconfig/main.c
+++ b/util/sconfig/main.c
@@ -869,14 +869,6 @@ static struct device *new_device_with_path(struct bus *parent,
new_d->path = ".type=DEVICE_PATH_MMIO,{.mmio={ .addr = 0x%x }}";
break;
- case ESPI:
- new_d->path = ".type=DEVICE_PATH_ESPI,{.espi={ .addr = 0x%x }}";
- break;
-
- case LPC:
- new_d->path = ".type=DEVICE_PATH_LPC,{.lpc={ .addr = 0x%x }}";
- break;
-
case GPIO:
new_d->path = ".type=DEVICE_PATH_GPIO,{.gpio={ .id = 0x%x }}";
break;