Commit cd04d509 authored by Andrew Ballance's avatar Andrew Ballance Committed by Greg Kroah-Hartman
Browse files

rust: firmware: fix invalid rustdoc link



remove an extra quote from the doc comment so that rustdoc
no longer genertes a link to a nonexistent file.

Signed-off-by: default avatarAndrew Ballance <andrewjballance@gmail.com>
Reviewed-by: default avatarDanilo Krummrich <dakr@redhat.com>
Acked-by: default avatarMiguel Ojeda <ojeda@kernel.org>
Fixes: de658283 ("rust: add firmware abstractions")
Link: https://lore.kernel.org/r/20240709004426.44854-1-andrewjballance@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8400291e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

//! Firmware abstraction
//!
//! C header: [`include/linux/firmware.h`](srctree/include/linux/firmware.h")
//! C header: [`include/linux/firmware.h`](srctree/include/linux/firmware.h)

use crate::{bindings, device::Device, error::Error, error::Result, str::CStr};
use core::ptr::NonNull;