c05564c4d8
Android 13
16 lines
346 B
C
Executable file
16 lines
346 B
C
Executable file
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef __MTK_BIF_INTF_H
|
|
#define __MTK_BIF_INTF_H
|
|
|
|
extern int mtk_bif_init(void);
|
|
extern int mtk_bif_get_vbat(int *vbat);
|
|
extern int mtk_bif_get_tbat(int *tbat);
|
|
extern bool mtk_bif_is_hw_exist(void);
|
|
extern int pmic_bif_init(void);
|
|
|
|
#endif /* __MTK_BIF_INTF_H */
|