blob: a11ad9a8bc8dc982870eefe05139cd37509e8532 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* 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);
}
|