northbridge/intel/nehalem/raminit.c: Remove redundant function

Remove 'read_mchbar8_bypass()' as 'read_mchbar8()' does the same
thing and 'read_mchbar8_bypass()' is unused.

Change-Id: I0dc2325e6205c38b63e5200c408ece65e4f938dc
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/8166
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
Edward O'Callaghan 2015-01-08 01:55:22 +11:00 committed by Kyösti Mälkki
parent 199b581f5c
commit 5e06850c0f
1 changed files with 0 additions and 5 deletions

View File

@ -146,11 +146,6 @@ static inline u8 read_mchbar8(u32 addr)
return MCHBAR8(addr); return MCHBAR8(addr);
} }
static inline u8 read_mchbar8_bypass(u32 addr)
{
return MCHBAR8(addr);
}
static void clflush(u32 addr) static void clflush(u32 addr)
{ {
asm volatile ("clflush (%0)"::"r" (addr)); asm volatile ("clflush (%0)"::"r" (addr));