blob: dbcaa65767f8dde17f58a6818b5d8a82179046dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _BATT_LEDS_H_
#define _BATT_LEDS_H_
extern int batt_leds_setup(void);
extern void batt_leds_cleanup(void);
extern void batt_leds_suspend_prepare(void);
extern void batt_leds_resume_complete(void);
extern int batt_leds_update(int status);
#endif /* #ifndef _BATT_LEDS_H_ */
|