northbridge/intel/i945/raminit.c: Remove set but unused variable `reg16`
Change-Id: Id4a758644a7b799e7662113c07d395e053525934 Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-on: http://review.coreboot.org/3984 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
parent
bf22338a09
commit
0ce5ebf0a0
|
@ -1952,8 +1952,6 @@ static void sdram_set_channel_mode(struct sys_info *sysinfo)
|
||||||
|
|
||||||
static void sdram_program_pll_settings(struct sys_info *sysinfo)
|
static void sdram_program_pll_settings(struct sys_info *sysinfo)
|
||||||
{
|
{
|
||||||
volatile u16 reg16;
|
|
||||||
|
|
||||||
MCHBAR32(PLLMON) = 0x80800000;
|
MCHBAR32(PLLMON) = 0x80800000;
|
||||||
|
|
||||||
sysinfo->fsb_frequency = fsbclk();
|
sysinfo->fsb_frequency = fsbclk();
|
||||||
|
@ -1970,7 +1968,7 @@ static void sdram_program_pll_settings(struct sys_info *sysinfo)
|
||||||
|
|
||||||
MCHBAR16(CPCTL) &= ~(1 << 11);
|
MCHBAR16(CPCTL) &= ~(1 << 11);
|
||||||
|
|
||||||
reg16 = MCHBAR16(CPCTL); /* Read back register to activate settings */
|
MCHBAR16(CPCTL); /* Read back register to activate settings */
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sdram_program_graphics_frequency(struct sys_info *sysinfo)
|
static void sdram_program_graphics_frequency(struct sys_info *sysinfo)
|
||||||
|
|
Loading…
Reference in New Issue