Skip to content

Commit dc20d49

Browse files
authored
Fix build error on aarm64. (#54)
## Description There was an error when building on aarm64. A function name has changed but not for arm, so it didn't build. - [ ] Impacts functionality? - [ ] Impacts security? - [ ] Breaking change? - [ ] Includes tests? - [ ] Includes documentation? ## How This Was Tested Building the repo. ## Integration Instructions N/A
1 parent 7801409 commit dc20d49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

perf_timer/src/arch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ pub(crate) mod aarch64 {
108108
registers::CNTPCT_EL0.get()
109109
}
110110

111-
fn cpu_count_frequency() -> u64 {
111+
fn perf_frequency() -> u64 {
112112
registers::CNTFRQ_EL0.get()
113113
}
114114
}

0 commit comments

Comments
 (0)