stm32/sdmmc: Fix compile errors
This commit is contained in:
parent
896764bb85
commit
73ef85b765
1 changed files with 2 additions and 2 deletions
|
@ -1580,7 +1580,7 @@ cfg_if::cfg_if! {
|
||||||
// F1 uses AHB1(HCLK), which is correct in PAC
|
// F1 uses AHB1(HCLK), which is correct in PAC
|
||||||
macro_rules! kernel_clk {
|
macro_rules! kernel_clk {
|
||||||
($inst:ident) => {
|
($inst:ident) => {
|
||||||
peripherals::$inst::frequency()
|
<peripherals::$inst as crate::rcc::sealed::RccPeripheral>::frequency()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if #[cfg(any(stm32f2, stm32f4))] {
|
} else if #[cfg(any(stm32f2, stm32f4))] {
|
||||||
|
@ -1619,7 +1619,7 @@ cfg_if::cfg_if! {
|
||||||
// Use default peripheral clock and hope it works
|
// Use default peripheral clock and hope it works
|
||||||
macro_rules! kernel_clk {
|
macro_rules! kernel_clk {
|
||||||
($inst:ident) => {
|
($inst:ident) => {
|
||||||
peripherals::$inst::frequency()
|
<peripherals::$inst as crate::rcc::sealed::RccPeripheral>::frequency()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue