mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
dffceb4b15
This patch removes the uart clock enable from serial driver & move it in the board code. Signed-off-by: Vikas Manocha <vikas.manocha@st.com> Reviewed-by: Simon Glass <sjg@chromium.org>
15 lines
261 B
C
15 lines
261 B
C
/*
|
|
* (C) Copyright 2016
|
|
* Vikas Manocha, ST Micoelectronics, vikas.manocha@st.com.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __STM32_DEFS_H__
|
|
#define __STM32_DEFS_H__
|
|
#include <asm/arch/stm32_periph.h>
|
|
|
|
int clock_setup(enum periph_clock);
|
|
|
|
#endif
|
|
|