You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
885 B
34 lines
885 B
From b3b4c29f38b29a6ac3779ff97363d42fd3061c4a Mon Sep 17 00:00:00 2001 |
|
From: Prabhakar pujeri <prabhakar.pujeri@gmail.com> |
|
Date: Mon, 19 Oct 2020 14:38:04 +0200 |
|
Subject: [PATCH] Add new processor upgrades from SMBIOS spec 3.4.0 |
|
|
|
Added 2 more new values (0x3D and 0x3E). |
|
|
|
Signed-off-by: Coiby Xu <coxu@redhat.com> |
|
--- |
|
dmidecode.c | 6 ++++-- |
|
1 file changed, 4 insertions(+), 2 deletions(-) |
|
|
|
diff --git a/dmidecode.c b/dmidecode.c |
|
index 97ba941..eb5a5af 100644 |
|
--- a/dmidecode.c |
|
+++ b/dmidecode.c |
|
@@ -1355,10 +1355,12 @@ static const char *dmi_processor_upgrade(u8 code) |
|
"Socket LGA2066", |
|
"Socket BGA1392", |
|
"Socket BGA1510", |
|
- "Socket BGA1528" /* 0x3C */ |
|
+ "Socket BGA1528", |
|
+ "Socket LGA4189", |
|
+ "Socket LGA1200" /* 0x3E */ |
|
}; |
|
|
|
- if (code >= 0x01 && code <= 0x3C) |
|
+ if (code >= 0x01 && code <= 0x3E) |
|
return upgrade[code - 0x01]; |
|
return out_of_spec; |
|
} |
|
-- |
|
2.31.1 |
|
|
|
|