From dafa5985a086f3a0a4463b9d0c6cd4022d0520ce Mon Sep 17 00:00:00 2001 From: Marco Visaya Date: Wed, 18 Dec 2024 12:24:12 -0800 Subject: [PATCH] correct capitalization of trait name --- runtime/dma/src/hil.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/dma/src/hil.rs b/runtime/dma/src/hil.rs index d859497..3211320 100644 --- a/runtime/dma/src/hil.rs +++ b/runtime/dma/src/hil.rs @@ -6,7 +6,7 @@ use kernel::ErrorCode; /// This trait provides the interfaces for managing DMA transfers. /// The full description of the DMA interface can be found in the Caliptra Subsystem Specification: /// https://github.com/chipsalliance/caliptra-ss/blob/main/docs/Caliptra%202.0%20Subsystem%20Specification%201.pdf -pub trait dma { +pub trait DMA { /// Configure the DMA transfer with 64-bit source and destination addresses. /// /// # Arguments: