diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-07-17 10:22:30 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@coreboot.org> | 2022-07-18 12:44:32 +0000 |
commit | 10cd06b1c75e4bc69a1de7e3a70c28ff2e5195fc (patch) | |
tree | 955d62a8b6e02c309b5b960fbbcf5644eb1f46e8 /src/mainboard/ocp | |
parent | bb5ccbd42fd3e702f71017dd186ae98278ffeeac (diff) |
treewide: Don't add bits
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: Id56310bd616cd19fee5dc934676006b2dc34b1ff
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65929
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/ocp')
-rw-r--r-- | src/mainboard/ocp/deltalake/ramstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/ocp/deltalake/ramstage.c b/src/mainboard/ocp/deltalake/ramstage.c index d8653b9002..81cc4ec276 100644 --- a/src/mainboard/ocp/deltalake/ramstage.c +++ b/src/mainboard/ocp/deltalake/ramstage.c @@ -331,7 +331,7 @@ unsigned int smbios_processor_family(struct cpuid_result res) unsigned int smbios_processor_characteristics(void) { /* 64-bit Capable, Multi-Core, Power/Performance Control */ - return 0x8c; /* BIT2 + BIT3 + BIT7 */ + return 0x8c; /* BIT2 | BIT3 | BIT7 */ } static void mainboard_enable(struct device *dev) |