Skip to content

Commit

Permalink
Removed redundant path qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
dbydd authored Sep 2, 2024
1 parent e86e86d commit 0426d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/registers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ where
/// ```
pub unsafe fn new(mmio_base: usize, mapper: M) -> Self {
let capability = Capability::new(mmio_base, &mapper);
let doorbell = doorbell::Doorbell::new(mmio_base, &capability, mapper.clone());
let doorbell = Doorbell::new(mmio_base, &capability, mapper.clone());
let operational =
Operational::new(mmio_base, capability.caplength.read_volatile(), &mapper);
let port_register_set = PortRegisterSet::new(mmio_base, &capability, mapper.clone());
Expand Down

0 comments on commit 0426d0b

Please sign in to comment.