blob: 9806eeca52462d77eb7232182b2180f7f7705ca2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef __MAX17047_BATTERY_H_
#define __MAX17047_BATTERY_H_
struct max17047_platform_data {
int (*battery_online)(void);
int (*charger_online)(void);
int (*charger_enable)(void);
};
#endif /* __MAX17047_BATTERY_H_ */
|