summaryrefslogtreecommitdiffstats
path: root/rust/kernel/src/bindings.rs
blob: cfb004a6d7861cb416d1f67744950ec43187ba6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: GPL-2.0

#[allow(
    clippy::all,
    non_camel_case_types,
    non_upper_case_globals,
    non_snake_case,
    improper_ctypes
)]
mod bindings_raw {
    use crate::c_types;
    include!("bindings_gen.rs");
}
pub use bindings_raw::*;

pub const GFP_KERNEL: gfp_t = BINDINGS_GFP_KERNEL;