Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

rust: drm: fix `srctree/` links

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>

+5 -5
+1 -1
rust/kernel/drm/device.rs
··· 2 2 3 3 //! DRM device. 4 4 //! 5 - //! C header: [`include/linux/drm/drm_device.h`](srctree/include/linux/drm/drm_device.h) 5 + //! C header: [`include/drm/drm_device.h`](srctree/include/drm/drm_device.h) 6 6 7 7 use crate::{ 8 8 alloc::allocator::Kmalloc,
+1 -1
rust/kernel/drm/driver.rs
··· 2 2 3 3 //! DRM driver core. 4 4 //! 5 - //! C header: [`include/linux/drm/drm_drv.h`](srctree/include/linux/drm/drm_drv.h) 5 + //! C header: [`include/drm/drm_drv.h`](srctree/include/drm/drm_drv.h) 6 6 7 7 use crate::{ 8 8 bindings, device, devres, drm,
+1 -1
rust/kernel/drm/file.rs
··· 2 2 3 3 //! DRM File objects. 4 4 //! 5 - //! C header: [`include/linux/drm/drm_file.h`](srctree/include/linux/drm/drm_file.h) 5 + //! C header: [`include/drm/drm_file.h`](srctree/include/drm/drm_file.h) 6 6 7 7 use crate::{bindings, drm, error::Result, prelude::*, types::Opaque}; 8 8 use core::marker::PhantomData;
+1 -1
rust/kernel/drm/gem/mod.rs
··· 2 2 3 3 //! DRM GEM API 4 4 //! 5 - //! C header: [`include/linux/drm/drm_gem.h`](srctree/include/linux/drm/drm_gem.h) 5 + //! C header: [`include/drm/drm_gem.h`](srctree/include/drm/drm_gem.h) 6 6 7 7 use crate::{ 8 8 alloc::flags::*,
+1 -1
rust/kernel/drm/ioctl.rs
··· 2 2 3 3 //! DRM IOCTL definitions. 4 4 //! 5 - //! C header: [`include/linux/drm/drm_ioctl.h`](srctree/include/linux/drm/drm_ioctl.h) 5 + //! C header: [`include/drm/drm_ioctl.h`](srctree/include/drm/drm_ioctl.h) 6 6 7 7 use crate::ioctl; 8 8