Fix the sysman code by replacing "Unknown" with "unknown"

Signed-off-by: Kanhaiya Singh <kanhaiya.singh@intel.com>
This commit is contained in:
Kanhaiya Singh
2021-04-01 18:33:10 +05:30
committed by Compute-Runtime-Automation
parent 35312d4126
commit 33ba9f45b1
3 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@
#pragma once
#include <string>
const std::string vendorIntel("Intel(R) Corporation");
const std::string unknown("Unknown");
const std::string unknown("unknown");
const std::string intelPciId("0x8086");
constexpr uint32_t MbpsToBytesPerSecond = 125000;
constexpr double milliVoltsFactor = 1000.0;