diff options
| author | Patrice Chotard <[email protected]> | 2017-07-18 09:29:05 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-07-26 11:26:53 -0400 |
| commit | 288f17e6481d556cd9eff62ca64b4d4c5863fd9e (patch) | |
| tree | fa394aa5bb912e9cf9320a3e6135a913dc5cfb9c /arch | |
| parent | 199a2178fe8d7bde8cb176a70a1304ba58670648 (diff) | |
clk: stm32f7: add clock .get_rate() callback
Add clock framework .get_rate callback.
This step will allow to convert all drivers which was using
proprietary clock_get() to use clock framework .get_rate().
Signed-off-by: Patrice Chotard <[email protected]>
Acked-by: Vikas MANOCHA <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/include/asm/arch-stm32f7/rcc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-stm32f7/rcc.h b/arch/arm/include/asm/arch-stm32f7/rcc.h index 0f8d50b4c61..cc9b57f803f 100644 --- a/arch/arm/include/asm/arch-stm32f7/rcc.h +++ b/arch/arm/include/asm/arch-stm32f7/rcc.h @@ -8,6 +8,8 @@ #ifndef _STM32_RCC_H #define _STM32_RCC_H +#include <dt-bindings/mfd/stm32f7-rcc.h> + /* * RCC AHB1ENR specific definitions */ |
