xref: /netbsd-src/sys/external/bsd/drm2/dist/drm/i915/i915_query.h (revision 41ec02673d281bbb3d38e6c78504ce6e30c228c1)
1 /*	$NetBSD: i915_query.h,v 1.2 2021/12/18 23:45:28 riastradh Exp $	*/
2 
3 /*
4  * SPDX-License-Identifier: MIT
5  *
6  * Copyright © 2018 Intel Corporation
7  */
8 
9 #ifndef _I915_QUERY_H_
10 #define _I915_QUERY_H_
11 
12 struct drm_device;
13 struct drm_file;
14 
15 int i915_query_ioctl(struct drm_device *dev, void *data, struct drm_file *file);
16 
17 #endif
18