diff options
author | Zheng Bao <zheng.bao@amd.com> | 2020-05-29 23:10:12 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2020-06-02 18:55:01 +0000 |
commit | 695d86243e7d2291b670d12b61446bd50708377e (patch) | |
tree | b944b78d4c815f17799420d43828fb8f424ad3ae /src/include/cpu/amd | |
parent | 12e9bd439431256666075abce69f58db02f12449 (diff) |
amd/microcode: Change equivalant ID width to 16bit
The definition of processor_rev_id in struct microcode
is 16 bits. So we need to change the a series of parameters
passing to 16 bits.
Change-Id: Iacabee7e571bd37f3aca106d515d755969daf8f3
Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41869
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/include/cpu/amd')
-rw-r--r-- | src/include/cpu/amd/microcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/cpu/amd/microcode.h b/src/include/cpu/amd/microcode.h index 8ebe675f3e..29b5576a7f 100644 --- a/src/include/cpu/amd/microcode.h +++ b/src/include/cpu/amd/microcode.h @@ -2,6 +2,6 @@ #define CPU_AMD_MICROCODE_H void update_microcode(u32 cpu_deviceid); -void amd_update_microcode_from_cbfs(u32 equivalent_processor_rev_id); +void amd_update_microcode_from_cbfs(u16 equivalent_processor_rev_id); #endif /* CPU_AMD_MICROCODE_H */ |