Moved query function to another cpp module

Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
This commit is contained in:
Milczarek, Slawomir 2021-11-15 11:03:42 +00:00 committed by Compute-Runtime-Automation
parent 767e7af797
commit 4bd31de0f4
2 changed files with 4 additions and 4 deletions

View File

@ -876,8 +876,4 @@ int Drm::getMaxGpuFrequency(HardwareInfo &hwInfo, int &maxGpuFrequency) {
return getMaxGpuFrequencyOfDevice(*this, sysFsPciPath, maxGpuFrequency);
}
bool Drm::hasPageFaultSupport() const {
return pageFaultSupported;
}
} // namespace NEO

View File

@ -74,4 +74,8 @@ void Drm::appendDrmContextFlags(drm_i915_gem_context_create_ext &gcc, bool isSpe
void Drm::queryPageFaultSupport() {
}
bool Drm::hasPageFaultSupport() const {
return pageFaultSupported;
}
} // namespace NEO