forked from Minki/linux
66d9cb5d80
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__ */
|