summaryrefslogtreecommitdiffstats
path: root/ichspi.c
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2017-04-22 00:09:42 +0200
committerNico Huber <nico.h@gmx.de>2019-06-27 10:25:15 +0000
commitdeeac7e41a311a0806af0e65a2ce5c6673f9cf92 (patch)
tree2ff1082bf9ed049c2863deff9a6d66b6980b1812 /ichspi.c
parent959aafa53eeae4f22766b9d098e5ca952af8c070 (diff)
downloadflashrom-deeac7e41a311a0806af0e65a2ce5c6673f9cf92.tar.gz
flashrom-deeac7e41a311a0806af0e65a2ce5c6673f9cf92.tar.bz2
flashrom-deeac7e41a311a0806af0e65a2ce5c6673f9cf92.zip
spi: Drop spi_controller type
Not needed anymore. Drop it fast before it encourages anyone to violate layers again! Change-Id: I8eda93b429e3ebaef79e22aba76be62987e496f4 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/33651 Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'ichspi.c')
-rw-r--r--ichspi.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/ichspi.c b/ichspi.c
index 6932678d7..66010403d 100644
--- a/ichspi.c
+++ b/ichspi.c
@@ -1666,7 +1666,6 @@ static void ich9_set_pr(const size_t reg_pr0, int i, int read_prot, int write_pr
}
static const struct spi_master spi_master_ich7 = {
- .type = SPI_CONTROLLER_ICH7,
.max_data_read = 64,
.max_data_write = 64,
.command = ich_spi_send_command,
@@ -1677,7 +1676,6 @@ static const struct spi_master spi_master_ich7 = {
};
static const struct spi_master spi_master_ich9 = {
- .type = SPI_CONTROLLER_ICH9,
.max_data_read = 64,
.max_data_write = 64,
.command = ich_spi_send_command,
@@ -1990,7 +1988,6 @@ int ich_init_spi(void *spibar, enum ich_chipset ich_gen)
}
static const struct spi_master spi_master_via = {
- .type = SPI_CONTROLLER_VIA,
.max_data_read = 16,
.max_data_write = 16,
.command = ich_spi_send_command,