diff options
author | Patrice Chotard <patrice.chotard@st.com> | 2017-07-18 09:29:03 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-07-26 11:26:53 -0400 |
commit | 704e954ceecbb02a6173ab9fe51b75c03c620ba2 (patch) | |
tree | 6c690ccbf6517d823755eb6e07274b01d9a1cc48 /drivers/clk/clk_stm32f7.c | |
parent | fa87abb6b67d21860b95f4c8a5d1c14008f7be46 (diff) | |
download | u-boot-midas-704e954ceecbb02a6173ab9fe51b75c03c620ba2.tar.gz u-boot-midas-704e954ceecbb02a6173ab9fe51b75c03c620ba2.tar.bz2 u-boot-midas-704e954ceecbb02a6173ab9fe51b75c03c620ba2.zip |
clk: stm32f7: add static for configure_clocks()
Also remove its declaration from stm32.h which
is no more needed.
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Acked-by: Vikas MANOCHA <vikas.manocha@st.com>
Diffstat (limited to 'drivers/clk/clk_stm32f7.c')
-rw-r--r-- | drivers/clk/clk_stm32f7.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk_stm32f7.c b/drivers/clk/clk_stm32f7.c index fcdc3c052b..aff8ad3bc7 100644 --- a/drivers/clk/clk_stm32f7.c +++ b/drivers/clk/clk_stm32f7.c @@ -104,7 +104,7 @@ struct pll_psc sys_pll_psc = { #endif #endif -int configure_clocks(void) +static int configure_clocks(void) { /* Reset RCC configuration */ setbits_le32(&STM32_RCC->cr, RCC_CR_HSION); |