We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a681d7 commit 0b21199Copy full SHA for 0b21199
source/loader/ze_ldrddi.cpp
@@ -134,7 +134,7 @@ namespace loader
134
for( auto& drv : loader::context->zeDrivers )
135
{
136
if (!drv.dditable.ze.Global.pfnInitDrivers) {
137
- drv.initStatus = ZE_RESULT_ERROR_UNINITIALIZED;
+ drv.initDriversStatus = ZE_RESULT_ERROR_UNINITIALIZED;
138
continue;
139
}
140
@@ -147,7 +147,7 @@ namespace loader
147
if( ZE_RESULT_SUCCESS != result ) {
148
// If Get Drivers fails with Uninitialized, then update the driver init status to prevent reporting this driver in the next get call.
149
if (ZE_RESULT_ERROR_UNINITIALIZED == result) {
150
- drv.initStatus = result;
+ drv.initDriversStatus = result;
151
152
153
0 commit comments