Make internal functions static in speedstep ACPI generation code.

(trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5014 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2010-01-16 13:49:03 +00:00 committed by Stefan Reinauer
parent f0ec230280
commit 12ee934cb3
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@
// XXX: PSS table values for power consumption are for Merom only
int determine_total_number_of_cores(void)
static int determine_total_number_of_cores(void)
{
device_t cpu;
int count = 0;
@ -46,7 +46,7 @@ int determine_total_number_of_cores(void)
return count;
}
int get_fsb(void)
static int get_fsb(void)
{
u32 fsbcode=(rdmsr(0xcd).lo >> 4) & 7;
switch (fsbcode) {