mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

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>
12 lines
217 B
C
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
|