You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
236 B
16 lines
236 B
7 months ago
|
/*
|
||
|
* Copyright (c) 2020, 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 */
|