brintos

brintos / linux-shallow public Read only

0
0
Text · 458 B · a14bf6b Raw
21 lines · c
1/*2 * SPDX-License-Identifier: MIT3 *4 * Copyright © 2018 Intel Corporation5 */6 7#ifndef I915_USER_EXTENSIONS_H8#define I915_USER_EXTENSIONS_H9 10struct i915_user_extension;11 12typedef int (*i915_user_extension_fn)(struct i915_user_extension __user *ext,13				      void *data);14 15int i915_user_extensions(struct i915_user_extension __user *ext,16			 const i915_user_extension_fn *tbl,17			 unsigned int count,18			 void *data);19 20#endif /* I915_USER_EXTENSIONS_H */21