diff options
author | Aaron Durbin <adurbin@chromium.org> | 2015-05-14 16:38:38 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2015-05-15 22:48:13 +0200 |
commit | 7780c4f213df157c51ff45f62d644cd90080ae47 (patch) | |
tree | 412668152225598ed38fbf1fec4e0d6076850ce6 /src/soc/rockchip/rk3288/spi.c | |
parent | 675a6d9a5a7fc21e7fcb348588a3590c0d76e986 (diff) | |
download | coreboot-7780c4f213df157c51ff45f62d644cd90080ae47.tar.xz |
rk3288: remove unused structs and declarations
The struct rockchip_spi_media type is no longer used;
nor is initialize_rockchip_spi_cbfs_media(). Remove them.
Change-Id: I2c24be249e0cd89e2dd328e05cdd24a178fe37e8
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/10214
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/soc/rockchip/rk3288/spi.c')
-rw-r--r-- | src/soc/rockchip/rk3288/spi.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/soc/rockchip/rk3288/spi.c b/src/soc/rockchip/rk3288/spi.c index a8d2be30fc..9952f11951 100644 --- a/src/soc/rockchip/rk3288/spi.c +++ b/src/soc/rockchip/rk3288/spi.c @@ -288,8 +288,3 @@ int spi_xfer(struct spi_slave *slave, const void *dout, rockchip_spi_enable_chip(regs, 0); return ret < 0 ? ret : 0; } - -struct rockchip_spi_media { - struct spi_slave *slave; - struct cbfs_simple_buffer buffer; -}; |