diff options
author | Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> | 2013-01-15 17:37:48 +0000 |
---|---|---|
committer | Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> | 2013-01-15 17:37:48 +0000 |
commit | 67d163d2fa6e7db9673e8ec820b8ef21bca5e907 (patch) | |
tree | 3cfa28408caa64594638f4a5cad7f5deafa8506a /ichspi.c | |
parent | 8225868465f6ad75958a1f81514d9c4978487184 (diff) | |
download | flashrom-67d163d2fa6e7db9673e8ec820b8ef21bca5e907.tar.gz flashrom-67d163d2fa6e7db9673e8ec820b8ef21bca5e907.tar.bz2 flashrom-67d163d2fa6e7db9673e8ec820b8ef21bca5e907.zip |
Fix duplicate 'const' declaration specifiers
Thanks to Idwer and clang for noticing these problems.
Corresponding to flashrom svn r1646.
Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Signed-off-by: Idwer Vollering <vidwer@gmail.com>
Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Diffstat (limited to 'ichspi.c')
-rw-r--r-- | ichspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1127,7 +1127,7 @@ static void ich_hwseq_set_addr(uint32_t addr) static uint32_t ich_hwseq_get_erase_block_size(unsigned int addr) { uint8_t enc_berase; - static const uint32_t const dec_berase[4] = { + static const uint32_t dec_berase[4] = { 256, 4 * 1024, 8 * 1024, |