From 6922e9468980c13720f98c15bd3086d053f0f538 Mon Sep 17 00:00:00 2001 From: Joel Rebello Date: Thu, 31 Oct 2024 17:19:13 +0100 Subject: [PATCH] constants/FormatVendorName: include vendor AMD Include missing vendor --- constants.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/constants.go b/constants.go index feecad8..f2aa6a6 100644 --- a/constants.go +++ b/constants.go @@ -119,6 +119,8 @@ func FormatVendorName(name string) string { } switch { + case strings.Contains(v, VendorAMD): + return VendorAMD case strings.Contains(v, VendorAsrockrack): return VendorAsrockrack case strings.Contains(v, VendorDell):