mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 22:05:40 +00:00

Mainly remove suffix 1 from prefix stm32mp1 in several macros and functions that can be used in drivers shared by different platforms. Change-Id: I2295c44f5b1edac7e80a93c0e8dfd671b36e88e7 Signed-off-by: Yann Gautier <yann.gautier@st.com> Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
15 lines
315 B
C
15 lines
315 B
C
/*
|
|
* Copyright (c) 2018-2019, STMicroelectronics - All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef STM32MP_RESET_H
|
|
#define STM32MP_RESET_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void stm32mp_reset_assert(uint32_t reset_id);
|
|
void stm32mp_reset_deassert(uint32_t reset_id);
|
|
|
|
#endif /* STM32MP_RESET_H */
|