mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Drm: call ioctl using ioctl helper if possible
Related-To: NEO-6999 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
a8e2bd3f98
commit
b72fcad1be
@@ -15,7 +15,7 @@ namespace L0 {
|
||||
|
||||
int DrmHelper::ioctl(Device *device, NEO::DrmIoctl request, void *arg) {
|
||||
auto drm = device->getOsInterface().getDriverModel()->as<NEO::Drm>();
|
||||
return drm->ioctl(request, arg);
|
||||
return drm->getIoctlHelper()->ioctl(drm, request, arg);
|
||||
}
|
||||
|
||||
int DrmHelper::getErrno(Device *device) {
|
||||
|
||||
Reference in New Issue
Block a user