From 66ef6b59453cfff0b6382e8beb01a01c9d224654 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Tue, 3 Dec 2024 15:43:51 +0100 Subject: [PATCH] rust/pvapconfig: Fix 'doc list item without indentation' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Command used: $ cargo +nightly clippy ... warning: doc list item without indentation --> pvapconfig/src/ap.rs:71:5 | 71 | /// This may take some time and even loop forever if there Reviewed-by: Steffen Eiden Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- rust/pvapconfig/src/ap.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/pvapconfig/src/ap.rs b/rust/pvapconfig/src/ap.rs index f8881770..dedcd781 100644 --- a/rust/pvapconfig/src/ap.rs +++ b/rust/pvapconfig/src/ap.rs @@ -68,6 +68,7 @@ pub fn ap_bus_has_apsb_support() -> Result<(), String> { /// This function loops until the AP bus reports that /// - all AP queue devices have been constructed /// - and all AP device have been bound to a device driver. +/// /// This may take some time and even loop forever if there /// is something wrong with the kernel modules setup. /// Returns true when AP bus bindings are complete,