File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
firmware/zynq7000-hal/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ pub fn configure_io_pll(boot_mode: BootMode, pll_config: PllConfig) {
209209 return ;
210210 }
211211 // Safety: This will only run at most once because of the atomic boolean check.
212- unsafe { configure_arm_pll_unchecked ( boot_mode, pll_config) } ;
212+ unsafe { configure_io_pll_unchecked ( boot_mode, pll_config) } ;
213213}
214214
215215/// This function configures the DDR PLL based on the provided [PllConfig].
@@ -218,7 +218,7 @@ pub fn configure_ddr_pll(boot_mode: BootMode, pll_config: PllConfig) {
218218 return ;
219219 }
220220 // Safety: This will only run at most once because of the atomic boolean check.
221- unsafe { configure_arm_pll_unchecked ( boot_mode, pll_config) } ;
221+ unsafe { configure_ddr_pll_unchecked ( boot_mode, pll_config) } ;
222222}
223223
224224/// This function configures the ARM PLL based on the provided [PllConfig].
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ pub mod memtest {
129129 /// This tests writes and reads on a memory block starting at the base address
130130 /// with the size `words` times 4.
131131 pub unsafe fn walking_one_test ( base_addr : usize , words : usize ) -> Result < ( ) , MemTestError > {
132- unsafe { walking_value_test ( true , base_addr, words) }
132+ unsafe { walking_value_test ( false , base_addr, words) }
133133 }
134134
135135 /// # Safety
You can’t perform that action at this time.
0 commit comments