File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1020,7 +1020,7 @@ impl Cbp {
1020
1020
// CMSIS-Core implementation and use fixed values.
1021
1021
unsafe { self . dcisw . write (
1022
1022
( ( ( way as u32 ) & ( CBP_SW_WAY_MASK >> CBP_SW_WAY_POS ) ) << CBP_SW_WAY_POS ) |
1023
- ( ( ( set as u32 ) & ( CBP_SW_SET_MASK >> CBP_SW_SET_POS ) ) << CBP_SW_SET_POS ) ;
1023
+ ( ( ( set as u32 ) & ( CBP_SW_SET_MASK >> CBP_SW_SET_POS ) ) << CBP_SW_SET_POS ) ) ;
1024
1024
}
1025
1025
}
1026
1026
@@ -1044,7 +1044,7 @@ impl Cbp {
1044
1044
// See comment for dcisw() about the format here
1045
1045
unsafe { self . dccsw . write (
1046
1046
( ( ( way as u32 ) & ( CBP_SW_WAY_MASK >> CBP_SW_WAY_POS ) ) << CBP_SW_WAY_POS ) |
1047
- ( ( ( set as u32 ) & ( CBP_SW_SET_MASK >> CBP_SW_SET_POS ) ) << CBP_SW_SET_POS ) ;
1047
+ ( ( ( set as u32 ) & ( CBP_SW_SET_MASK >> CBP_SW_SET_POS ) ) << CBP_SW_SET_POS ) ) ;
1048
1048
}
1049
1049
}
1050
1050
@@ -1062,7 +1062,7 @@ impl Cbp {
1062
1062
// See comment for dcisw() about the format here
1063
1063
unsafe { self . dccisw . write (
1064
1064
( ( ( way as u32 ) & ( CBP_SW_WAY_MASK >> CBP_SW_WAY_POS ) ) << CBP_SW_WAY_POS ) |
1065
- ( ( ( set as u32 ) & ( CBP_SW_SET_MASK >> CBP_SW_SET_POS ) ) << CBP_SW_SET_POS ) ;
1065
+ ( ( ( set as u32 ) & ( CBP_SW_SET_MASK >> CBP_SW_SET_POS ) ) << CBP_SW_SET_POS ) ) ;
1066
1066
}
1067
1067
}
1068
1068
You can’t perform that action at this time.
0 commit comments