fix: remove not needed hardcoded caps reported by ioctl helper xe

Related-To: NEO-10496
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2024-03-22 17:55:28 +00:00
committed by Compute-Runtime-Automation
parent f0bdd5765b
commit 8d38a0c726
2 changed files with 2 additions and 10 deletions

View File

@@ -926,12 +926,6 @@ int IoctlHelperXe::ioctl(DrmIoctl request, void *arg) {
case static_cast<int>(DrmParam::paramRevision):
*d->value = revId;
break;
case static_cast<int>(DrmParam::paramHasPageFault):
*d->value = 0;
break;
case static_cast<int>(DrmParam::paramHasScheduler):
*d->value = static_cast<int>(0x80000037);
break;
case static_cast<int>(DrmParam::paramCsTimestampFrequency): {
uint64_t frequency = 0;
if (getTimestampFrequency(frequency)) {