refactor: remove not needed function
Related-To: NEO-11160 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
parent
7c16278bee
commit
aa26694bad
|
@ -764,7 +764,6 @@ uint64_t IoctlHelperXe::getFlagsForVmBind(bool bindCapture, bool bindImmediate,
|
|||
if (bindCapture) {
|
||||
ret |= DRM_XE_VM_BIND_FLAG_DUMPABLE;
|
||||
}
|
||||
ret |= getExtraFlagsForVmBind(bindCapture, bindImmediate, bindMakeResident, bindLock, readOnlyResource);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -1472,10 +1471,6 @@ void IoctlHelperXe::setContextProperties(const OsContextLinux &osContext, void *
|
|||
}
|
||||
}
|
||||
|
||||
uint64_t IoctlHelperXe::getExtraFlagsForVmBind(bool bindCapture, bool bindImmediate, bool bindMakeResident, bool bindLock, bool readOnlyResource) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool IoctlHelperXe::perfOpenEuStallStream(uint32_t euStallFdParameter, std::array<uint64_t, 12u> &properties, int32_t *stream) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -135,7 +135,6 @@ class IoctlHelperXe : public IoctlHelper {
|
|||
const char *xeGetBindOperationName(int bindOperation);
|
||||
const char *xeGetBindFlagsName(int bindFlags);
|
||||
|
||||
virtual uint64_t getExtraFlagsForVmBind(bool bindCapture, bool bindImmediate, bool bindMakeResident, bool bindLock, bool readOnlyResource);
|
||||
const char *xeGetengineClassName(uint32_t engineClass);
|
||||
template <typename DataType>
|
||||
std::vector<DataType> queryData(uint32_t queryId);
|
||||
|
|
Loading…
Reference in New Issue