Nico Huber has uploaded a new change for review. ( https://review.coreboot.org/18933 )
Change subject: fixup! flashrom: Add Skylake platform support ......................................................................
fixup! flashrom: Add Skylake platform support
Fix `unused variable` warnings.
Change-Id: Ibeddffc2de6ee8384d7bf493cfb5f7d6174b31bc Signed-off-by: Nico Huber nico.huber@secunet.com --- M ichspi.c 1 file changed, 1 insertion(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/33/18933/1
diff --git a/ichspi.c b/ichspi.c index 3c26406..47b019a 100644 --- a/ichspi.c +++ b/ichspi.c @@ -1464,7 +1464,6 @@ */ static uint32_t pch_hwseq_get_erase_block_size(unsigned int addr) { - uint8_t enc_berase; static const uint32_t dec_berase[4] = { 256, 4 * 1024, @@ -1514,7 +1513,7 @@ int pch_hwseq_probe(struct flashctx *flash) { uint32_t total_size, boundary = 0; /*There are no partitions in flash*/ - uint32_t erase_size_low, size_low, erase_size_high, size_high; + uint32_t erase_size_high, size_high; struct block_eraser *eraser;
total_size = hwseq_data.size_comp0 + hwseq_data.size_comp1;