summaryrefslogtreecommitdiffstats
path: root/src/include/spi_flash.h
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2014-03-27 20:37:03 -0700
committerKyösti Mälkki <kyosti.malkki@gmail.com>2014-07-05 11:36:11 +0200
commit1e187356e831583830a22cf051c792470d0440f5 (patch)
tree0f93f902d12778717c8333328edf7a6715dc500f /src/include/spi_flash.h
parentab605108184e53964e6f6a2300a1983aa7166422 (diff)
downloadcoreboot-1e187356e831583830a22cf051c792470d0440f5.tar.gz
coreboot-1e187356e831583830a22cf051c792470d0440f5.tar.bz2
coreboot-1e187356e831583830a22cf051c792470d0440f5.zip
spi: Remove unused parameters from spi_flash_probe and setup_spi_slave.
The spi_flash_probe and and spi_setup_slave functions each took a max_hz parameter and a spi_mode parameter which were never used. BUG=None TEST=Built for link, falco, rambi, nyan. BRANCH=None Change-Id: I3a2e0a9ab530bcc0f722f81f00e8c7bd1f6d2a22 Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: https://chromium-review.googlesource.com/192046 Reviewed-by: Gabe Black <gabeblack@chromium.org> Tested-by: Gabe Black <gabeblack@chromium.org> Commit-Queue: Gabe Black <gabeblack@chromium.org> [km: cherry-pick from chromium] Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/6174 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/include/spi_flash.h')
-rw-r--r--src/include/spi_flash.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/spi_flash.h b/src/include/spi_flash.h
index 8e514719a15d..61c931e32c53 100644
--- a/src/include/spi_flash.h
+++ b/src/include/spi_flash.h
@@ -64,8 +64,7 @@ struct spi_flash {
size_t len);
};
-struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
- unsigned int max_hz, unsigned int spi_mode);
+struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs);
static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
size_t len, void *buf)