aboutsummaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2014-07-27 19:37:31 +0200
committerEdward O'Callaghan <eocallaghan@alterapraxis.com>2014-07-29 04:40:27 +0200
commit0f92f630556b4bf2e4c0696cae4c2f8e97eda334 (patch)
treeb97ad7a89a101c4770774035db5e4693043be928 /src/cpu
parent081651b6677c64a5f2861d831822b5f8f3517c21 (diff)
Uniformly spell frequency unit symbol as Hz
Change-Id: I1eb8d5bd79322ff3654a6ad66278a57d46a818c1 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: http://review.coreboot.org/6384 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/amd/model_fxx/fidvid.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cpu/amd/model_fxx/fidvid.c b/src/cpu/amd/model_fxx/fidvid.c
index e68611bca8..a005c469ae 100644
--- a/src/cpu/amd/model_fxx/fidvid.c
+++ b/src/cpu/amd/model_fxx/fidvid.c
@@ -219,10 +219,10 @@ static u32 set_fidvid(unsigned apicid, unsigned fidvid, int showmessage)
else
step = ((fid_cur / 2) - (fid_new / 2)) * 2;
- /* If 200Mhz step OR past 3200 max table value */
+ /* If 200MHz step OR past 3200 max table value */
if ((step == 2) || (fid_new >= 0x18 || fid_cur >= 0x18)) {
- printk(BIOS_DEBUG, "200MHZ step ");
+ printk(BIOS_DEBUG, "200MHz step ");
/* Step +/- 200MHz at a time */
if (fid_cur < fid_new)
@@ -230,7 +230,7 @@ static u32 set_fidvid(unsigned apicid, unsigned fidvid, int showmessage)
else
fid_temp = fid_cur - 2;
- } else if (step > 2) { /* If more than a 200Mhz step */
+ } else if (step > 2) { /* If more than a 200MHz step */
int temp;
/* look it up in the table */
@@ -246,15 +246,15 @@ static u32 set_fidvid(unsigned apicid, unsigned fidvid, int showmessage)
else
break; /* table error */
- } else { /* step < 2 (100MHZ) */
- printk(BIOS_DEBUG, "100MHZ step ");
+ } else { /* step < 2 (100MHz) */
+ printk(BIOS_DEBUG, "100MHz step ");
/* The table adjust in 200MHz increments. If requested,
* do the 100MHz increment if the CPU supports it.*/
if (cpuid_edx(0x80000007) & (1 << 6)) {
fid_temp = fid_cur + 1;
} else {
- /* 100 MHZ not supported. Get out of the loop */
+ /* 100 MHz not supported. Get out of the loop */
printk(BIOS_DEBUG, "is not supported.\n");
break;
}