aboutsummaryrefslogtreecommitdiff
path: root/util/sconfig/sconfig.l
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/sconfig.l
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/sconfig.l')
-rwxr-xr-xutil/sconfig/sconfig.l2
1 files changed, 0 insertions, 2 deletions
diff --git a/util/sconfig/sconfig.l b/util/sconfig/sconfig.l
index e5dc829273..1111267278 100755
--- a/util/sconfig/sconfig.l
+++ b/util/sconfig/sconfig.l
@@ -38,8 +38,6 @@ generic {yylval.number=GENERIC; return(BUS);}
mmio {yylval.number=MMIO; return(BUS);}
spi {yylval.number=SPI; return(BUS);}
usb {yylval.number=USB; return(BUS);}
-lpc {yylval.number=LPC; return(BUS);}
-espi {yylval.number=ESPI; return(BUS);}
gpio {yylval.number=GPIO; return(BUS);}
irq {yylval.number=IRQ; return(RESOURCE);}
drq {yylval.number=DRQ; return(RESOURCE);}