ACPI / SBS: Add getting state operation in the acpi_sbs_battery_get_property()
https://bugzilla.kernel.org/show_bug.cgi?id=24492 Signed-off-by: Lan Tianyu <tianyu.lan@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
b4a03b9aa9
commit
1dd5c715e5
|
@ -130,6 +130,9 @@ struct acpi_sbs {
|
||||||
|
|
||||||
#define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)
|
#define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)
|
||||||
|
|
||||||
|
static int acpi_sbs_remove(struct acpi_device *device, int type);
|
||||||
|
static int acpi_battery_get_state(struct acpi_battery *battery);
|
||||||
|
|
||||||
static inline int battery_scale(int log)
|
static inline int battery_scale(int log)
|
||||||
{
|
{
|
||||||
int scale = 1;
|
int scale = 1;
|
||||||
|
@ -195,6 +198,8 @@ static int acpi_sbs_battery_get_property(struct power_supply *psy,
|
||||||
|
|
||||||
if ((!battery->present) && psp != POWER_SUPPLY_PROP_PRESENT)
|
if ((!battery->present) && psp != POWER_SUPPLY_PROP_PRESENT)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
|
acpi_battery_get_state(battery);
|
||||||
switch (psp) {
|
switch (psp) {
|
||||||
case POWER_SUPPLY_PROP_STATUS:
|
case POWER_SUPPLY_PROP_STATUS:
|
||||||
if (battery->rate_now < 0)
|
if (battery->rate_now < 0)
|
||||||
|
@ -903,8 +908,6 @@ static void acpi_sbs_callback(void *context)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int acpi_sbs_remove(struct acpi_device *device, int type);
|
|
||||||
|
|
||||||
static int acpi_sbs_add(struct acpi_device *device)
|
static int acpi_sbs_add(struct acpi_device *device)
|
||||||
{
|
{
|
||||||
struct acpi_sbs *sbs;
|
struct acpi_sbs *sbs;
|
||||||
|
|
Loading…
Reference in New Issue