diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2012-06-06 13:40:12 -0700 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2012-07-24 02:37:39 +0200 |
commit | 5f3aca39d33183ff7d74116e6d2ef2b164fdea23 (patch) | |
tree | 2afddfc97149062711c2df6e47f63da8b9e089a1 /src/drivers/spi | |
parent | 00671887398a8266f65278318e570cb2a0cf079c (diff) |
SPI flash layer: remove unused function spi_flash_free()
We don't ever free memory in coreboot, hence drop spi_flash_free() and
spi_free_slave()
Change-Id: I0ca3f78574ceb4516e7d33c06ab1a58abfb3b0ec
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/1273
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/drivers/spi')
-rw-r--r-- | src/drivers/spi/spi_flash.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/drivers/spi/spi_flash.c b/src/drivers/spi/spi_flash.c index 0b859f337c..6cec611504 100644 --- a/src/drivers/spi/spi_flash.c +++ b/src/drivers/spi/spi_flash.c @@ -297,12 +297,5 @@ err_manufacturer_probe: err_read_id: spi_release_bus(spi); err_claim_bus: - spi_free_slave(spi); return NULL; } - -void spi_flash_free(struct spi_flash *flash) -{ - spi_free_slave(flash->spi); - free(flash); -} |