mirror of
https://github.com/revyos/thead-kernel.git
synced 2026-09-04 00:44:35 +02:00
17 lines
278 B
C
17 lines
278 B
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright © 2016 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __MOCK_GEM_OBJECT_H__
|
|
#define __MOCK_GEM_OBJECT_H__
|
|
|
|
#include "gem/i915_gem_object_types.h"
|
|
|
|
struct mock_object {
|
|
struct drm_i915_gem_object base;
|
|
};
|
|
|
|
#endif /* !__MOCK_GEM_OBJECT_H__ */
|