refactor: correct naming of enum class constants 8/n

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-12-13 16:09:52 +00:00
committed by Compute-Runtime-Automation
parent 269009c299
commit dd1b9d6abc
371 changed files with 3406 additions and 3404 deletions

View File

@@ -113,7 +113,7 @@ ze_result_t LinuxSysmanImp::initLocalDeviceAndDrmHandles() {
pDevice = Device::fromHandle(pParentSysmanDeviceImp->hCoreDevice);
DEBUG_BREAK_IF(nullptr == pDevice);
NEO::OSInterface &osInterface = pDevice->getOsInterface();
if (osInterface.getDriverModel()->getDriverModelType() != NEO::DriverModelType::DRM) {
if (osInterface.getDriverModel()->getDriverModelType() != NEO::DriverModelType::drm) {
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
}
pDrm = osInterface.getDriverModel()->as<NEO::Drm>();