mirror of
https://github.com/anrieff/libcpuid
synced 2024-12-16 16:35:45 +00:00
DB: Add missing patterns in decode_amd_ryzen_model_code()
Forgotten in d8a273f17a
This commit is contained in:
parent
5187986bd1
commit
ee32a4a735
1 changed files with 3 additions and 0 deletions
|
@ -495,9 +495,12 @@ static int decode_amd_ryzen_model_code(const char* bs)
|
||||||
int model_code;
|
int model_code;
|
||||||
const char* match_str;
|
const char* match_str;
|
||||||
} patterns[] = {
|
} patterns[] = {
|
||||||
|
{ _2800, "2800" },
|
||||||
{ _2700, "2700" },
|
{ _2700, "2700" },
|
||||||
|
{ _2600, "2600" },
|
||||||
{ _2500, "2500" },
|
{ _2500, "2500" },
|
||||||
{ _2400, "2400" },
|
{ _2400, "2400" },
|
||||||
|
{ _2200, "2200" },
|
||||||
{ _1900, "1900" },
|
{ _1900, "1900" },
|
||||||
{ _1600, "1600" },
|
{ _1600, "1600" },
|
||||||
{ _1500, "1500" },
|
{ _1500, "1500" },
|
||||||
|
|
Loading…
Reference in a new issue