Skip to content

Commit df523db

Browse files
committed
rust: dma: add missing Markdown code span
Add missing Markdown code span. This was found using the Clippy `doc_markdown` lint, which we may want to enable. Fixes: ad2907b ("rust: add dma coherent allocator abstraction") Reviewed-by: Benno Lossin <[email protected]> Acked-by: Danilo Krummrich <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Miguel Ojeda <[email protected]>
1 parent f54c750 commit df523db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/kernel/dma.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ pub mod attrs {
9494
pub const DMA_ATTR_ALLOC_SINGLE_PAGES: Attrs = Attrs(bindings::DMA_ATTR_ALLOC_SINGLE_PAGES);
9595

9696
/// This tells the DMA-mapping subsystem to suppress allocation failure reports (similarly to
97-
/// __GFP_NOWARN).
97+
/// `__GFP_NOWARN`).
9898
pub const DMA_ATTR_NO_WARN: Attrs = Attrs(bindings::DMA_ATTR_NO_WARN);
9999

100100
/// Used to indicate that the buffer is fully accessible at an elevated privilege level (and

0 commit comments

Comments
 (0)