From 0f92f630556b4bf2e4c0696cae4c2f8e97eda334 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Sun, 27 Jul 2014 19:37:31 +0200 Subject: Uniformly spell frequency unit symbol as Hz Change-Id: I1eb8d5bd79322ff3654a6ad66278a57d46a818c1 Signed-off-by: Elyes HAOUAS Reviewed-on: http://review.coreboot.org/6384 Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan --- src/cpu/amd/model_fxx/fidvid.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/cpu') 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; } -- cgit v1.2.3