Skip to content

Commit 8d7506e

Browse files
ojedajfvogel
authored andcommitted
rust: enable clippy::unnecessary_safety_doc lint
commit 23f42dc upstream. In Rust 1.67.0, Clippy added the `unnecessary_safety_doc` lint [1], which is similar to `unnecessary_safety_comment`, but for `# Safety` sections, i.e. safety preconditions in the documentation. This is something that should not happen with our coding guidelines in mind. Thus enable the lint to have it machine-checked. Link: https://rust-lang.github.io/rust-clippy/master/index.html#/unnecessary_safety_doc [1] Reviewed-by: Trevor Gross <[email protected]> Reviewed-by: Alice Ryhl <[email protected]> Tested-by: Gary Guo <[email protected]> Reviewed-by: Gary Guo <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Miguel Ojeda <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> (cherry picked from commit f07f6c135dbd6c454bac5debe192b7888ba52c42) Signed-off-by: Jack Vogel <[email protected]>
1 parent 5ba95b6 commit 8d7506e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,7 @@ export rust_common_flags := --edition=2021 \
462462
-Wclippy::no_mangle_with_rust_abi \
463463
-Wclippy::undocumented_unsafe_blocks \
464464
-Wclippy::unnecessary_safety_comment \
465+
-Wclippy::unnecessary_safety_doc \
465466
-Wrustdoc::missing_crate_level_docs
466467

467468
KBUILD_HOSTCFLAGS := $(KBUILD_USERHOSTCFLAGS) $(HOST_LFS_CFLAGS) \

0 commit comments

Comments
 (0)