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

Fixed regulator is mainly used when no pmic is available Change-Id: Ib6a998684bcb055ba95a093bee563372d9051474 Signed-off-by: Pascal Paillet <p.paillet@st.com>
12 lines
237 B
C
12 lines
237 B
C
/*
|
|
* Copyright (c) 2021, STMicroelectronics - All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef REGULATOR_FIXED_H
|
|
#define REGULATOR_FIXED_H
|
|
|
|
int fixed_regulator_register(void);
|
|
|
|
#endif /* REGULATOR_FIXED_H */
|