diff options
Diffstat (limited to 'src/include/device/path.h')
-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; }; }; |