diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2015-05-28 21:06:24 +0200 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2015-05-28 22:07:44 +0200 |
commit | beb45020ace2b2d3f6cf4b88f9e7218c33a6225b (patch) | |
tree | d815f9b8affc5952ad3af6849106b07a7853ebd6 /src/drivers/spi/spi_flash.c | |
parent | 7f46420f4c85e7b296bfb4e8b3796a152e24b5fb (diff) |
Remove leftover tseg_relocate
Change-Id: I534f992ed479c7cdc049bd598259b1f1cf2953b9
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/10354
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/drivers/spi/spi_flash.c')
-rw-r--r-- | src/drivers/spi/spi_flash.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/drivers/spi/spi_flash.c b/src/drivers/spi/spi_flash.c index d2a3c66bd2..b0558bb19a 100644 --- a/src/drivers/spi/spi_flash.c +++ b/src/drivers/spi/spi_flash.c @@ -349,10 +349,6 @@ struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs) /* search the table for matches in shift and id */ for (i = 0; i < ARRAY_SIZE(flashes); ++i) if (flashes[i].shift == shift && flashes[i].idcode == *idp) { -#if CONFIG_SMM_TSEG && defined(__SMM__) - /* Need to relocate this function */ - tseg_relocate((void **)&flashes[i].probe); -#endif /* we have a match, call probe */ flash = flashes[i].probe(spi, idp); if (flash) @@ -360,10 +356,6 @@ struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs) } if (!flash && spi->programmer_specific_probe) { -#if CONFIG_SMM_TSEG && defined(__SMM__) - /* Need to relocate this function */ - tseg_relocate((void **)&spi->programmer_specific_probe); -#endif flash = spi->programmer_specific_probe (spi); } if (!flash) { @@ -372,15 +364,6 @@ struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs) } flash_detected: -#if CONFIG_SMM_TSEG && defined(__SMM__) - /* Ensure flash handlers are valid for TSEG */ - tseg_relocate((void **)&flash->read); - tseg_relocate((void **)&flash->write); - tseg_relocate((void **)&flash->erase); - tseg_relocate((void **)&flash->status); - tseg_relocate((void **)&flash->name); -#endif - printk(BIOS_INFO, "SF: Detected %s with sector size 0x%x, total 0x%x\n", flash->name, flash->sector_size, flash->size); |