Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * SPDX-License-Identifier: MIT
0003  *
0004  * Copyright © 2018 Intel Corporation
0005  */
0006 
0007 #ifndef I915_USER_EXTENSIONS_H
0008 #define I915_USER_EXTENSIONS_H
0009 
0010 struct i915_user_extension;
0011 
0012 typedef int (*i915_user_extension_fn)(struct i915_user_extension __user *ext,
0013                       void *data);
0014 
0015 int i915_user_extensions(struct i915_user_extension __user *ext,
0016              const i915_user_extension_fn *tbl,
0017              unsigned int count,
0018              void *data);
0019 
0020 #endif /* I915_USER_EXTENSIONS_H */