mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 08:27:00 +02:00
These two files are identical on MT8192 and MT8195. They can also be used on MT8188. So move them to common/drivers/pmic/. Signed-off-by: Bo-Chen Chen <rex-bc.chen@mediatek.com> Change-Id: I8c12d15f1da79ab5767ac02b3ab70e8508155ee8
16 lines
238 B
C
16 lines
238 B
C
/*
|
|
* Copyright (c) 2022, MediaTek Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PMIC_H
|
|
#define PMIC_H
|
|
|
|
#define PMIC_PWRHOLD (0xa08)
|
|
|
|
/* external API */
|
|
void pmic_power_off(void);
|
|
|
|
#endif /* PMIC_H */
|