mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00

Add dedicated clock and reset dt-bindings include files. The former files are renamed with stm32mp15, and the stm32mp1 file just determine through STM32MP13 or STM32MP15 flag which file to include. Signed-off-by: Yann Gautier <yann.gautier@st.com> Change-Id: I0db23996a3ba25f7c3ea920f16230b11cf051208
11 lines
235 B
C
11 lines
235 B
C
/* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
|
|
/*
|
|
* Copyright (C) 2017-2022, STMicroelectronics - All Rights Reserved
|
|
*/
|
|
|
|
#if STM32MP13
|
|
#include "stm32mp13-clksrc.h"
|
|
#endif
|
|
#if STM32MP15
|
|
#include "stm32mp15-clksrc.h"
|
|
#endif
|