]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
rust: drm: fix `srctree/` links
authorMiguel Ojeda <ojeda@kernel.org>
Wed, 30 Jul 2025 13:07:15 +0000 (15:07 +0200)
committerMiguel Ojeda <ojeda@kernel.org>
Sun, 7 Sep 2025 22:11:19 +0000 (00:11 +0200)
These `srctree/` links pointed inside `linux/`, but they are directly
under `drm/`.

Thus fix them.

This cleans a future warning that will check our `srctree/` links.

Cc: stable@vger.kernel.org
Fixes: a98a73be9ee9 ("rust: drm: file: Add File abstraction")
Fixes: c284d3e42338 ("rust: drm: gem: Add GEM object abstraction")
Fixes: 07c9016085f9 ("rust: drm: add driver abstractions")
Fixes: 1e4b8896c0f3 ("rust: drm: add device abstraction")
Fixes: 9a69570682b1 ("rust: drm: ioctl: Add DRM ioctl abstraction")
Acked-by: Danilo Krummrich <dakr@kernel.org>
Reviewed-by: Daniel Almeida <daniel.almeida@collabora.com>
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
rust/kernel/drm/device.rs
rust/kernel/drm/driver.rs
rust/kernel/drm/file.rs
rust/kernel/drm/gem/mod.rs
rust/kernel/drm/ioctl.rs

index d29c477e89a87de48e426d543ff3e7996324a722..f8f1db5eeb0f6fd04bc161d26132db20e4eaa118 100644 (file)
@@ -2,7 +2,7 @@
 
 //! DRM device.
 //!
-//! C header: [`include/linux/drm/drm_device.h`](srctree/include/linux/drm/drm_device.h)
+//! C header: [`include/drm/drm_device.h`](srctree/include/drm/drm_device.h)
 
 use crate::{
     alloc::allocator::Kmalloc,
index fe7e8d06961aa5a2f8d33d72d8e69eb8a78c29d8..d2dad77274c4ca7f5f74e9efe4ca02a1f9583a4c 100644 (file)
@@ -2,7 +2,7 @@
 
 //! DRM driver core.
 //!
-//! C header: [`include/linux/drm/drm_drv.h`](srctree/include/linux/drm/drm_drv.h)
+//! C header: [`include/drm/drm_drv.h`](srctree/include/drm/drm_drv.h)
 
 use crate::{
     bindings, device, devres, drm,
index e8789c9110d654df2561a88a53bc6b1cfa709fdd..8c46f8d519516a4fb5059927b58ba554beba63b2 100644 (file)
@@ -2,7 +2,7 @@
 
 //! DRM File objects.
 //!
-//! C header: [`include/linux/drm/drm_file.h`](srctree/include/linux/drm/drm_file.h)
+//! C header: [`include/drm/drm_file.h`](srctree/include/drm/drm_file.h)
 
 use crate::{bindings, drm, error::Result, prelude::*, types::Opaque};
 use core::marker::PhantomData;
index b71821cfb5eaa00eb3a95646fa0a8b8a1ad0790b..b9f3248876baa3c04801ac96cbd3051c035bce28 100644 (file)
@@ -2,7 +2,7 @@
 
 //! DRM GEM API
 //!
-//! C header: [`include/linux/drm/drm_gem.h`](srctree/include/linux/drm/drm_gem.h)
+//! C header: [`include/drm/drm_gem.h`](srctree/include/drm/drm_gem.h)
 
 use crate::{
     alloc::flags::*,
index fdec01c371687c79d660457bd2bd6e09b2400d35..8431cdcd3ae0ef3202b8c82f0c42fc1b70c2b88c 100644 (file)
@@ -2,7 +2,7 @@
 
 //! DRM IOCTL definitions.
 //!
-//! C header: [`include/linux/drm/drm_ioctl.h`](srctree/include/linux/drm/drm_ioctl.h)
+//! C header: [`include/drm/drm_ioctl.h`](srctree/include/drm/drm_ioctl.h)
 
 use crate::ioctl;