diff options
author | Asahi Lina <lina@asahilina.net> | 2023-02-05 21:12:31 +0900 |
---|---|---|
committer | Danilo Krummrich <dakr@kernel.org> | 2024-10-22 23:26:31 +0200 |
commit | cfd66f531af29e0616c58b4cd4c72770a5ac4081 (patch) | |
tree | 75d73122b0f148e7969f601dc8838fc42995c2ca /rust/helpers/helpers.c | |
parent | 57e9abb1112d7008cfd13b25f8105b3e8ff78ac3 (diff) |
rust: drm: gem: Add GEM object abstraction
The DRM GEM subsystem is the DRM memory management subsystem used by
most modern drivers. Add a Rust abstraction to allow Rust DRM driver
implementations to use it.
Signed-off-by: Asahi Lina <lina@asahilina.net>
Co-developed-by: Danilo Krummrich <dakr@redhat.com>
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Diffstat (limited to 'rust/helpers/helpers.c')
-rw-r--r-- | rust/helpers/helpers.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/helpers/helpers.c b/rust/helpers/helpers.c index 663cdc2a45e0..86f5007cc86a 100644 --- a/rust/helpers/helpers.c +++ b/rust/helpers/helpers.c @@ -12,6 +12,7 @@ #include "build_assert.c" #include "build_bug.c" #include "device.c" +#include "drm.c" #include "err.c" #include "io.c" #include "kunit.c" |