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
14 lines
220 B
C
14 lines
220 B
C
/*
|
|
* Copyright (c) 2022, MediaTek Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <pmic.h>
|
|
#include <pmic_wrap_init.h>
|
|
|
|
void pmic_power_off(void)
|
|
{
|
|
pwrap_write(PMIC_PWRHOLD, 0x0);
|
|
}
|