Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.11 12 lines 324 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __MOCK_GEM_DEVICE_H__ 3#define __MOCK_GEM_DEVICE_H__ 4 5struct drm_i915_private; 6 7struct drm_i915_private *mock_gem_device(void); 8void mock_device_flush(struct drm_i915_private *i915); 9 10void mock_destroy_device(struct drm_i915_private *i915); 11 12#endif /* !__MOCK_GEM_DEVICE_H__ */