brintos

brintos / linux-shallow public Read only

0
0
Text · 278 B · 688511a Raw
17 lines · c
1/*2 * SPDX-License-Identifier: MIT3 *4 * Copyright © 2016 Intel Corporation5 */6 7#ifndef __MOCK_GEM_OBJECT_H__8#define __MOCK_GEM_OBJECT_H__9 10#include "gem/i915_gem_object_types.h"11 12struct mock_object {13	struct drm_i915_gem_object base;14};15 16#endif /* !__MOCK_GEM_OBJECT_H__ */17