File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change 55
55
unused_import_braces,
56
56
unused_lifetimes,
57
57
unused_qualifications,
58
- pointer_structural_match,
59
58
missing_debug_implementations
60
59
) ]
61
60
#![ allow( clippy:: missing_panics_doc) ]
Original file line number Diff line number Diff line change 76
76
/// ```
77
77
pub unsafe fn new ( mmio_base : usize , mapper : M ) -> Self {
78
78
let capability = Capability :: new ( mmio_base, & mapper) ;
79
- let doorbell = doorbell :: Doorbell :: new ( mmio_base, & capability, mapper. clone ( ) ) ;
79
+ let doorbell = Doorbell :: new ( mmio_base, & capability, mapper. clone ( ) ) ;
80
80
let operational =
81
81
Operational :: new ( mmio_base, capability. caplength . read_volatile ( ) , & mapper) ;
82
82
let port_register_set = PortRegisterSet :: new ( mmio_base, & capability, mapper. clone ( ) ) ;
You can’t perform that action at this time.
0 commit comments