diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-01-16 13:49:03 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-01-16 13:49:03 +0000 |
commit | 12ee934cb398f28a29ceef455c98ff3fa2ad956f (patch) | |
tree | 6b57537cb2af1476cd9aa0f2532372da185bc3df /src/cpu/intel/speedstep/acpi.c | |
parent | f0ec23028096e9c9c912b947d7382e607502dcf7 (diff) | |
download | coreboot-12ee934cb398f28a29ceef455c98ff3fa2ad956f.tar.xz |
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
Diffstat (limited to 'src/cpu/intel/speedstep/acpi.c')
-rw-r--r-- | src/cpu/intel/speedstep/acpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/intel/speedstep/acpi.c b/src/cpu/intel/speedstep/acpi.c index 58a696113b..9a0291d47c 100644 --- a/src/cpu/intel/speedstep/acpi.c +++ b/src/cpu/intel/speedstep/acpi.c @@ -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) { |