drm/modes: Fix drm_mode_vrefres() docs
[drm/drm-misc.git] / rust / helpers / helpers.c
blobdcf827a61b52e71e46fd5378878602eef5e538b6
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Non-trivial C macros cannot be used in Rust. Similarly, inlined C functions
4 * cannot be called either. This file explicitly creates functions ("helpers")
5 * that wrap those so that they can be called from Rust.
7 * Sorted alphabetically.
8 */
10 #include "blk.c"
11 #include "bug.c"
12 #include "build_assert.c"
13 #include "build_bug.c"
14 #include "cred.c"
15 #include "err.c"
16 #include "fs.c"
17 #include "jump_label.c"
18 #include "kunit.c"
19 #include "mutex.c"
20 #include "page.c"
21 #include "pid_namespace.c"
22 #include "rbtree.c"
23 #include "refcount.c"
24 #include "security.c"
25 #include "signal.c"
26 #include "slab.c"
27 #include "spinlock.c"
28 #include "task.c"
29 #include "uaccess.c"
30 #include "vmalloc.c"
31 #include "wait.c"
32 #include "workqueue.c"