File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ pub fn virtual_to_physical(virtual_address: VirtAddr) -> Option<PhysAddr> {
113
113
114
114
match translate_result {
115
115
TranslateResult :: NotMapped | TranslateResult :: InvalidFrameAddress ( _) => {
116
- trace ! ( "Uable to determine the physical address of 0x{virtual_address:X}" ) ;
116
+ trace ! ( "Unable to determine the physical address of 0x{virtual_address:X}" ) ;
117
117
None
118
118
}
119
119
TranslateResult :: Mapped { frame, offset, .. } => {
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ impl WrapCount {
74
74
WrapCount ( true )
75
75
}
76
76
77
- /// Toogles a given wrap count to respectiver other value.
77
+ /// Toggles a given wrap count to respectiver other value.
78
78
///
79
79
/// If WrapCount(true) returns WrapCount(false),
80
80
/// if WrapCount(false) returns WrapCount(true).
@@ -470,7 +470,7 @@ impl DrvNotif {
470
470
}
471
471
472
472
impl DevNotif {
473
- /// Enables the notificication capability for a specific buffer.
473
+ /// Enables the notification capability for a specific buffer.
474
474
pub fn enable_notif_specific ( & mut self ) {
475
475
self . f_notif_idx = true ;
476
476
}
You can’t perform that action at this time.
0 commit comments