[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240809064222.3527881-1-aliceryhl@google.com>
Date: Fri, 9 Aug 2024 06:42:22 +0000
From: Alice Ryhl <aliceryhl@...gle.com>
To: Jens Axboe <axboe@...nel.dk>, Miguel Ojeda <ojeda@...nel.org>,
Andreas Hindborg <a.hindborg@...sung.com>
Cc: linux-block@...r.kernel.org, rust-for-linux@...r.kernel.org,
linux-kernel@...r.kernel.org, Alice Ryhl <aliceryhl@...gle.com>
Subject: [PATCH] rust: sort includes in bindings_helper.h
Dash has ascii value 45 and underscore has ascii value 95, so to
correctly sort the includes, the underscore should be last.
Fixes: 3253aba3408a ("rust: block: introduce `kernel::block::mq` module")
Signed-off-by: Alice Ryhl <aliceryhl@...gle.com>
---
rust/bindings/bindings_helper.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rust/bindings/bindings_helper.h b/rust/bindings/bindings_helper.h
index b940a5777330..ae82e9c941af 100644
--- a/rust/bindings/bindings_helper.h
+++ b/rust/bindings/bindings_helper.h
@@ -7,8 +7,8 @@
*/
#include <kunit/test.h>
-#include <linux/blk_types.h>
#include <linux/blk-mq.h>
+#include <linux/blk_types.h>
#include <linux/blkdev.h>
#include <linux/errname.h>
#include <linux/ethtool.h>
--
2.46.0.76.ge559c4bf1a-goog
Powered by blists - more mailing lists