diff options
author | Martin Roth <martinroth@chromium.org> | 2021-07-13 14:38:33 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2021-07-14 20:24:12 +0000 |
commit | 679c37aa8de55ae28fc4ff13b2dd45d3905e0c0b (patch) | |
tree | 1bd22c76d9c05f8f9d3f898c7282a3ff95ac5ace /src/include | |
parent | 299558874c5c17a1294595bf3d2b6f0d0f7fcfc4 (diff) |
src/device: Remove DEVICE_PATH_ESPI & DEVICE_PATH_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. The previous
patch removes them from sconfig, so now they aren't needed in coreboot.
BUG=None
TEST=Build
Signed-off-by: Martin Roth <martin@coreboot.org>
Change-Id: I9ae7817bb63d69ee272103b2d1186f125e188950
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56278
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 'src/include')
-rw-r--r-- | src/include/device/path.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/include/device/path.h b/src/include/device/path.h index 0cdb997726..934d3b354d 100644 --- a/src/include/device/path.h +++ b/src/include/device/path.h @@ -19,8 +19,6 @@ enum device_path_type { DEVICE_PATH_SPI, DEVICE_PATH_USB, DEVICE_PATH_MMIO, - DEVICE_PATH_ESPI, - DEVICE_PATH_LPC, DEVICE_PATH_GPIO, /* @@ -45,8 +43,6 @@ enum device_path_type { "DEVICE_PATH_SPI", \ "DEVICE_PATH_USB", \ "DEVICE_PATH_MMIO", \ - "DEVICE_PATH_ESPI", \ - "DEVICE_PATH_LPC", \ "DEVICE_PATH_GPIO", \ } @@ -110,14 +106,6 @@ struct mmio_path { uintptr_t addr; }; -struct espi_path { - uintptr_t addr; -}; - -struct lpc_path { - uintptr_t addr; -}; - struct gpio_path { unsigned int id; }; @@ -138,8 +126,6 @@ struct device_path { struct spi_path spi; struct usb_path usb; struct mmio_path mmio; - struct espi_path espi; - struct lpc_path lpc; struct gpio_path gpio; }; }; |