Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / gpu / drm / i915 / i915_user_extensions.h
bloba14bf6bba9a1f7e5b1e710ef970aea3bd0731637
1 /*
2 * SPDX-License-Identifier: MIT
4 * Copyright © 2018 Intel Corporation
5 */
7 #ifndef I915_USER_EXTENSIONS_H
8 #define I915_USER_EXTENSIONS_H
10 struct i915_user_extension;
12 typedef int (*i915_user_extension_fn)(struct i915_user_extension __user *ext,
13 void *data);
15 int i915_user_extensions(struct i915_user_extension __user *ext,
16 const i915_user_extension_fn *tbl,
17 unsigned int count,
18 void *data);
20 #endif /* I915_USER_EXTENSIONS_H */