diff options
Diffstat (limited to 'com32/gpllib/dmi/dmi_cache.c')
-rw-r--r-- | com32/gpllib/dmi/dmi_cache.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/com32/gpllib/dmi/dmi_cache.c b/com32/gpllib/dmi/dmi_cache.c index 67a43d0b..b52eba19 100644 --- a/com32/gpllib/dmi/dmi_cache.c +++ b/com32/gpllib/dmi/dmi_cache.c @@ -130,10 +130,11 @@ const char *dmi_cache_associativity(uint8_t code) "24-way Set-associative", "32-way Set-associative", "48-way Set-associative", - "64-way Set-associative" /* 0x0D */ + "64-way Set-associative", + "20-way Set-associative" /* 0x0E */ }; - if (code >= 0x01 && code <= 0x0D) + if (code >= 0x01 && code <= 0x0E) return type[code - 0x01]; return out_of_spec; } |