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:
parent
f0ec230280
commit
12ee934cb3
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
// XXX: PSS table values for power consumption are for Merom only
|
// 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;
|
device_t cpu;
|
||||||
int count = 0;
|
int count = 0;
|
||||||
|
@ -46,7 +46,7 @@ int determine_total_number_of_cores(void)
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
int get_fsb(void)
|
static int get_fsb(void)
|
||||||
{
|
{
|
||||||
u32 fsbcode=(rdmsr(0xcd).lo >> 4) & 7;
|
u32 fsbcode=(rdmsr(0xcd).lo >> 4) & 7;
|
||||||
switch (fsbcode) {
|
switch (fsbcode) {
|
||||||
|
|
Loading…
Reference in New Issue