remove duplicated 0005-Add-new-processor-upgrades-from-SMBIOS-spec-3.4.0.patch
This file is a duplicate of
0005-dmidecode-Add-new-processor-upgrades-from-SMBIOS-spec-3.4.0.patch.
Related: rhbz#2024078
Fixes: 340523d
("fix regression caused by updating to upstream v3.3")
Signed-off-by: Coiby Xu <coxu@redhat.com>
This commit is contained in:
parent
8a907eb30e
commit
84e3ebcb4d
@ -1,34 +0,0 @@
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user