Skip to content

Commit f700515

Browse files
authored
Signed-off-by: Russell McGuire <russell.w.mcguire@intel.com> (#480)
Fix warnings uncaught from prior checkins
1 parent 8e41e34 commit f700515

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

scripts/core/PROG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1335,7 +1335,7 @@ displaying or saving the frame while the GPU is already processing the next one:
13351335
${x}CommandListAppendLaunchKernel(hImmCmdList, hKernel, &launchArgs[i], nullptr, 0, nullptr);
13361336
13371337
// Host function notifies consumer thread that frame i is ready
1338-
${x}CommandListAppendHostFunction(hImmCmdList, onFrameReady, &frames[i], nullptr, 0, nullptr);
1338+
${x}CommandListAppendHostFunction(hImmCmdList, onFrameReady, &frames[i], nullptr, nullptr, 0, nullptr);
13391339
}
13401340
13411341
// Wait for all GPU work to complete

scripts/core/device.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,6 +1180,7 @@ desc: "Output of $xDeviceValidateRuntimeRequirements"
11801180
class: $xDevice
11811181
name: $x_validate_runtime_requirements_output_t
11821182
base: $x_base_properties_t
1183+
version: "1.16"
11831184
members:
11841185
- type: $x_validate_runtime_requirements_result_t
11851186
name: result

scripts/sysman/EXT_DeviceState.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ Usage Example
6060
${s}DeviceGetState(hDevice, &deviceState);
6161
6262
// Check extended device state flags
63-
if (extendedState.flags & ${S}_DEVICE_EXT_STATE_FLAGS_WEDGED) {
63+
if (extendedState.flags & ${S}_DEVICE_STATE_EXT_FLAG_WEDGED) {
6464
// Device is wedged - recovery action needed
6565
}
6666
67-
if (extendedState.flags & ${S}_DEVICE_EXT_STATE_FLAGS_SURVIVABILITY) {
67+
if (extendedState.flags & ${S}_DEVICE_STATE_EXT_FLAG_SURVIVABILITY) {
6868
// Device is in survivability mode
6969
}
7070
71-
if (extendedState.flags & ${S}_DEVICE_EXT_STATE_FLAGS_FLASH_OVERRIDE) {
71+
if (extendedState.flags & ${S}_DEVICE_STATE_EXT_FLAG_FLASH_OVERRIDE) {
7272
// Device has flash override enabled
7373
}

0 commit comments

Comments
 (0)