nb/intel/i945/raminit.c: duplicate 'const' declaration specifier
Spotted by Clang Change-Id: I7e91f3edfa773560131e267a7776d8bf1ff7e295 Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/5843 Tested-by: build bot (Jenkins) Reviewed-by: Idwer Vollering <vidwer@gmail.com> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
a916b39e74
commit
2f237c1859
|
@ -1735,14 +1735,14 @@ static void sdram_set_timing_and_control(struct sys_info *sysinfo)
|
|||
u32 temp_drt;
|
||||
int i, page_size;
|
||||
|
||||
static const u8 const drt0_table[] = {
|
||||
static const u8 drt0_table[] = {
|
||||
/* CL 3, 4, 5 */
|
||||
3, 4, 5, /* FSB533/400, DDR533/400 */
|
||||
4, 5, 6, /* FSB667, DDR533/400 */
|
||||
4, 5, 6, /* FSB667, DDR667 */
|
||||
};
|
||||
|
||||
static const u8 const cas_table[] = {
|
||||
static const u8 cas_table[] = {
|
||||
2, 1, 0, 3
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue