mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-24 12:31:38 -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
156 B
C
9 lines
156 B
C
#ifndef __MOCK_GEM_OBJECT_H__
|
|
#define __MOCK_GEM_OBJECT_H__
|
|
|
|
struct mock_object {
|
|
struct drm_i915_gem_object base;
|
|
};
|
|
|
|
#endif /* !__MOCK_GEM_OBJECT_H__ */
|