drivers/elog: remove unused function

get_rom_size() is no longer used. Remove it.

BUG=chrome-os-partner:55932

Change-Id: Id9fa8f67b67ee355243a5c763cfafa0ce76e9b2b
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/16088
Tested-by: build bot (Jenkins)
Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
Aaron Durbin 2016-08-04 00:34:57 -05:00 committed by Martin Roth
parent 2d45c28675
commit 9b0a343059
1 changed files with 0 additions and 13 deletions

View File

@ -66,19 +66,6 @@ static enum {
ELOG_BROKEN,
} elog_initialized = ELOG_UNINITIALIZED;
static inline u32 get_rom_size(void)
{
u32 rom_size;
/* Assume the used space of the ROM image starts from 0. The
* physical size of the device may not be completely used. */
rom_size = elog_spi->size;
if (rom_size > CONFIG_ROM_SIZE)
rom_size = CONFIG_ROM_SIZE;
return rom_size;
}
/*
* Pointer to an event log header in the event data area
*/