intel_fb_drv: dummy implementation of lrc irqs

Ref #2179
This commit is contained in:
Stefan Kalkowski 2016-11-29 11:41:56 +01:00 committed by Christian Helmuth
parent 53271d8c5f
commit 4b09e357e0
2 changed files with 5 additions and 5 deletions

View File

@ -606,11 +606,6 @@ void intel_logical_ring_stop(struct intel_engine_cs *ring)
TRACE_AND_STOP;
}
void intel_lrc_irq_handler(struct intel_engine_cs *ring)
{
TRACE_AND_STOP;
}
void intel_lr_context_unpin(struct drm_i915_gem_request *req)
{
TRACE_AND_STOP;

View File

@ -1709,4 +1709,9 @@ int intel_guc_ucode_load(struct drm_device *dev)
return 0;
}
void intel_lrc_irq_handler(struct intel_engine_cs *ring)
{
TRACE;
}
} /* extern "C" */