fix: remove check for xe vmbind flags support

bind immediate and readonly flags are already available in upstream

Related-To: NEO-12774
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2024-09-24 13:39:34 +00:00
committed by Compute-Runtime-Automation
parent fa4a1a5f1f
commit f8e77d5f43
3 changed files with 15 additions and 88 deletions

View File

@@ -214,10 +214,8 @@ class IoctlHelperXe : public IoctlHelper {
struct SupportedFeatures {
union {
struct {
uint32_t vmBindReadOnly : 1;
uint32_t vmBindImmediate : 1;
uint32_t pageFault : 1;
uint32_t reserved : 29;
uint32_t reserved : 31;
} flags;
uint32_t allFlags = 0;
};