mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-05-02 18:17:50 -04:00
A simulacrum of drm_i915_private to let us pretend interactions with the device. v2: Tidy init error paths Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Matthew Auld <matthew.auld@intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/20170213171558.20942-6-chris@chris-wilson.co.uk
9 lines
172 B
C
9 lines
172 B
C
#ifndef __MOCK_GEM_DEVICE_H__
|
|
#define __MOCK_GEM_DEVICE_H__
|
|
|
|
struct drm_i915_private;
|
|
|
|
struct drm_i915_private *mock_gem_device(void);
|
|
|
|
#endif /* !__MOCK_GEM_DEVICE_H__ */
|