Merge git://git.infradead.org/battery-2.6
* git://git.infradead.org/battery-2.6:
intel_mid_battery: Fix battery scaling
intel_mid_battery: Fix the argument order to intel_scu_ipc_command
olpc_battery: Fix build failure caused by sysfs changes
Add s3c-adc-battery driver
Intel MID platform battery driver
Fix up trivial conflicts (battery drivers added from different branches)
in drivers/power/{Kconfig,Makefile}
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
#ifndef _S3C_ADC_BATTERY_H
|
||||
#define _S3C_ADC_BATTERY_H
|
||||
|
||||
struct s3c_adc_bat_thresh {
|
||||
int volt; /* mV */
|
||||
int cur; /* mA */
|
||||
int level; /* percent */
|
||||
};
|
||||
|
||||
struct s3c_adc_bat_pdata {
|
||||
int (*init)(void);
|
||||
void (*exit)(void);
|
||||
void (*enable_charger)(void);
|
||||
void (*disable_charger)(void);
|
||||
|
||||
int gpio_charge_finished;
|
||||
|
||||
const struct s3c_adc_bat_thresh *lut_noac;
|
||||
unsigned int lut_noac_cnt;
|
||||
const struct s3c_adc_bat_thresh *lut_acin;
|
||||
unsigned int lut_acin_cnt;
|
||||
|
||||
const unsigned int volt_channel;
|
||||
const unsigned int current_channel;
|
||||
const unsigned int backup_volt_channel;
|
||||
|
||||
const unsigned int volt_mult;
|
||||
const unsigned int current_mult;
|
||||
const unsigned int backup_volt_mult;
|
||||
const unsigned int internal_impedance;
|
||||
|
||||
const unsigned int backup_volt_max;
|
||||
const unsigned int backup_volt_min;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user