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 v6.12 20 lines 458 B view raw
1/* 2 * SPDX-License-Identifier: MIT 3 * 4 * Copyright © 2018 Intel Corporation 5 */ 6 7#ifndef I915_USER_EXTENSIONS_H 8#define I915_USER_EXTENSIONS_H 9 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 */