From 00018c82703da3c0a25124bc2548a5aa515f862c Mon Sep 17 00:00:00 2001 From: Urja Rannikko Date: Sat, 7 Nov 2015 15:40:56 +0200 Subject: amd/model_fxx: fix code style in FID&VID support check This is in AP code, fixed in preparation for copying the same check to BSP. Change-Id: I0750919d9fdb3d4e6666221ad82097e0c479cf14 Signed-off-by: Urja Rannikko Reviewed-on: http://review.coreboot.org/12359 Tested-by: build bot (Jenkins) Reviewed-by: Jonathan A. Kollasch Reviewed-by: Paul Menzel --- src/cpu/amd/model_fxx/fidvid.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/cpu') diff --git a/src/cpu/amd/model_fxx/fidvid.c b/src/cpu/amd/model_fxx/fidvid.c index a005c469ae..9851e6511e 100644 --- a/src/cpu/amd/model_fxx/fidvid.c +++ b/src/cpu/amd/model_fxx/fidvid.c @@ -356,9 +356,8 @@ static void init_fidvid_ap(unsigned bsp_apicid, unsigned apicid) u32 fid_max; int loop; - if((cpuid_edx(0x80000007)&0x06)!=0x06) { + if ((cpuid_edx(0x80000007) & 0x06) != 0x06) return; /* FID/VID change not supported */ - } msr = rdmsr(0xc0010042); fid_max = ((msr.lo >> 16) & 0x3f); /* max fid */ -- cgit v1.2.3