Skip to content

Commit 9a359c9

Browse files
committed
fixup! rust: drm: gem: Add GEM object abstraction
1 parent c256369 commit 9a359c9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

rust/kernel/drm/gem/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,8 @@ impl<T: DriverObject> DerefMut for Object<T> {
298298
impl<T: DriverObject> drv::AllocImpl for Object<T> {
299299
const ALLOC_OPS: drv::AllocOps = drv::AllocOps {
300300
gem_create_object: None,
301-
prime_handle_to_fd: Some(bindings::drm_gem_prime_handle_to_fd),
302-
prime_fd_to_handle: Some(bindings::drm_gem_prime_fd_to_handle),
301+
prime_handle_to_fd: None,
302+
prime_fd_to_handle: None,
303303
gem_prime_import: None,
304304
gem_prime_import_sg_table: None,
305305
dumb_create: None,

0 commit comments

Comments
 (0)