mainboard/packardbell/ms2290/romstage.c: Comment unused func
Take unused reverse eng function out of build by wrapping in #if 0. Change-Id: I816b3ea08a8858fc03e4455c1d7711265e63cba4 Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/8167 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
5e06850c0f
commit
08079eca29
|
@ -163,10 +163,13 @@ static inline u32 read_acpi32(u32 addr)
|
||||||
return inl(DEFAULT_PMBASE | addr);
|
return inl(DEFAULT_PMBASE | addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// unused func - used for RE
|
||||||
|
#if 0
|
||||||
static inline u16 read_acpi16(u32 addr)
|
static inline u16 read_acpi16(u32 addr)
|
||||||
{
|
{
|
||||||
return inw(DEFAULT_PMBASE | addr);
|
return inw(DEFAULT_PMBASE | addr);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <cpu/intel/romstage.h>
|
#include <cpu/intel/romstage.h>
|
||||||
void main(unsigned long bist)
|
void main(unsigned long bist)
|
||||||
|
|
Loading…
Reference in New Issue