From cef9aa4eca30b22102c22465befe59931be6f570 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Fri, 3 Nov 2023 09:18:48 -0700 Subject: [PATCH] ffi: Make `ioctl` module private The functions here all have wrappers, and the submodules of this module are all `pub(crate)`, so it seems unintentional that this is public. --- drm-ffi/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drm-ffi/src/lib.rs b/drm-ffi/src/lib.rs index d8145f0..01f977d 100644 --- a/drm-ffi/src/lib.rs +++ b/drm-ffi/src/lib.rs @@ -15,7 +15,7 @@ pub(crate) mod utils; use crate::result::SystemError as Error; pub mod gem; -pub mod ioctl; +mod ioctl; pub mod mode; pub mod result; pub mod syncobj;