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 @@ -16,7 +16,7 @@ pub struct RegisterBlock {
16
16
/// AHB Slave Control Register
17
17
pub ahbscr : RW < u32 > ,
18
18
reserved0 : u32 ,
19
- /// Auxilary Bus Fault Status Register
19
+ /// Auxiliary Bus Fault Status Register
20
20
pub abfsr : RW < u32 > ,
21
21
}
22
22
Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ impl SCB {
344
344
let mut cbp = unsafe { CBP :: new ( ) } ;
345
345
346
346
// Disable I-cache
347
- // NOTE(unsafe): We have synchronised access by &mut self
347
+ // NOTE(unsafe): We have synchronized access by &mut self
348
348
unsafe { self . ccr . modify ( |r| r & !SCB_CCR_IC_MASK ) } ;
349
349
350
350
// Invalidate I-cache
@@ -417,7 +417,7 @@ impl SCB {
417
417
}
418
418
419
419
// Turn off the D-cache
420
- // NOTE(unsafe): We have synchronised access by &mut self
420
+ // NOTE(unsafe): We have synchronized access by &mut self
421
421
unsafe { self . ccr . modify ( |r| r & !SCB_CCR_DC_MASK ) } ;
422
422
423
423
// Clean and invalidate whatever was left in it
You can’t perform that action at this time.
0 commit comments