arm-trusted-firmware/include/drivers/st/stm32mp1_rcc.h
Gabriel Fernandez 9be88e75c1 feat(st-clock): add clock driver for STM32MP13
Add new clock driver for STM32MP13. Split the include file to manage
either STM32MP13 or STM32MP15.

Change-Id: Ia568cd12b1d5538809204f0fd2224d51e5d1e985
Signed-off-by: Gabriel Fernandez <gabriel.fernandez@st.com>
2022-03-22 09:09:23 +01:00

12 lines
217 B
C

/*
* Copyright (c) 2015-2022, STMicroelectronics - All Rights Reserved
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#if STM32MP13
#include "stm32mp13_rcc.h"
#endif
#if STM32MP15
#include "stm32mp15_rcc.h"
#endif