style: configure readability-identifier-naming.LocalVariableCase

Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
Artur Harasimiuk
2022-05-12 14:04:41 +00:00
committed by Compute-Runtime-Automation
parent 24669e0219
commit 819e0f5515
127 changed files with 1414 additions and 1412 deletions

View File

@@ -107,11 +107,11 @@ SysfsAccess &LinuxSysmanImp::getSysfsAccess() {
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) {
NEO::OSInterface &osInterface = pDevice->getOsInterface();
if (osInterface.getDriverModel()->getDriverModelType() != NEO::DriverModelType::DRM) {
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
}
pDrm = OsInterface.getDriverModel()->as<NEO::Drm>();
pDrm = osInterface.getDriverModel()->as<NEO::Drm>();
return ZE_RESULT_SUCCESS;
}