stm32/rcc: allow const-propagation

This commit is contained in:
xoviat
2023-07-04 16:29:46 -05:00
parent 99b4ea7c1d
commit 953c745ed8
2 changed files with 3 additions and 5 deletions

View File

@ -348,9 +348,7 @@ fn main() {
g.extend(quote! {
impl crate::rcc::sealed::RccPeripheral for peripherals::#pname {
fn frequency() -> crate::time::Hertz {
critical_section::with(|_| unsafe {
crate::rcc::get_freqs().#clk
})
unsafe { crate::rcc::get_freqs().#clk }
}
fn enable() {
critical_section::with(|_| {