blob: 610af1b2584a0259fc30866bb0963076a0b54aa0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __HWCONFIG_CHECK_H
#define __HWCONFIG_CHECK_H
bool get_hwconfig_sleep_flag(void);
bool get_hwconfig_resume_flag(void);
int hwconfig_check_sleep_conti_reg(void);
int hwconfig_check_resume_conti_reg(void);
int hwconfig_check_sleep_sep_reg(void);
int hwconfig_check_resume_sep_reg(void);
int hwconfig_check_sleep_regu_volt(void);
int hwconfig_check_resume_regu_volt(void);
#endif/*__HWCONFIG_CHECK_H*/
|