File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ impl El1Mpu {
69
69
///
70
70
/// ## Arguments
71
71
///
72
- /// - `region`: The [Region ] object containing the configuration for the MPU region.
72
+ /// - `region`: The [El1Region ] object containing the configuration for the MPU region.
73
73
/// - `idx`: The index of the region to be configured.
74
74
///
75
75
/// ## Errors
@@ -116,7 +116,7 @@ impl El1Mpu {
116
116
/// ## Arguments
117
117
///
118
118
/// - `regions_starting_idx`: The starting index for the regions to be reconfigured.
119
- /// - `regions`: A slice of [Region ] objects that will overwrite the previous regions starting from `regions_starting_idx`.
119
+ /// - `regions`: A slice of [El1Region ] objects that will overwrite the previous regions starting from `regions_starting_idx`.
120
120
pub fn set_regions (
121
121
& mut self ,
122
122
regions_starting_idx : u8 ,
@@ -163,7 +163,8 @@ impl El1Mpu {
163
163
164
164
/// Configure the EL1 MPU
165
165
///
166
- /// Write regions, attributes and enable/disable the background region with a single [Config] struct.
166
+ /// Write regions, attributes and enable/disable the background region
167
+ /// with a single [El1Config] struct.
167
168
pub fn configure ( & mut self , config : & El1Config ) -> Result < ( ) , Error > {
168
169
self . set_regions ( 0 , config. regions ) ?;
169
170
You can’t perform that action at this time.
0 commit comments