mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 12:16:20 +00:00
Merge branch 'battery' into release
This commit is contained in:
commit
7a92d80322
1 changed files with 20 additions and 0 deletions
|
@ -31,6 +31,7 @@
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
#include <linux/jiffies.h>
|
#include <linux/jiffies.h>
|
||||||
#include <linux/async.h>
|
#include <linux/async.h>
|
||||||
|
#include <linux/dmi.h>
|
||||||
|
|
||||||
#ifdef CONFIG_ACPI_PROCFS_POWER
|
#ifdef CONFIG_ACPI_PROCFS_POWER
|
||||||
#include <linux/proc_fs.h>
|
#include <linux/proc_fs.h>
|
||||||
|
@ -87,6 +88,10 @@ static const struct acpi_device_id battery_device_ids[] = {
|
||||||
|
|
||||||
MODULE_DEVICE_TABLE(acpi, battery_device_ids);
|
MODULE_DEVICE_TABLE(acpi, battery_device_ids);
|
||||||
|
|
||||||
|
/* For buggy DSDTs that report negative 16-bit values for either charging
|
||||||
|
* or discharging current and/or report 0 as 65536 due to bad math.
|
||||||
|
*/
|
||||||
|
#define QUIRK_SIGNED16_CURRENT 0x0001
|
||||||
|
|
||||||
struct acpi_battery {
|
struct acpi_battery {
|
||||||
struct mutex lock;
|
struct mutex lock;
|
||||||
|
@ -114,6 +119,7 @@ struct acpi_battery {
|
||||||
int state;
|
int state;
|
||||||
int power_unit;
|
int power_unit;
|
||||||
u8 alarm_present;
|
u8 alarm_present;
|
||||||
|
long quirks;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
|
#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
|
||||||
|
@ -392,6 +398,11 @@ static int acpi_battery_get_state(struct acpi_battery *battery)
|
||||||
state_offsets, ARRAY_SIZE(state_offsets));
|
state_offsets, ARRAY_SIZE(state_offsets));
|
||||||
battery->update_time = jiffies;
|
battery->update_time = jiffies;
|
||||||
kfree(buffer.pointer);
|
kfree(buffer.pointer);
|
||||||
|
|
||||||
|
if ((battery->quirks & QUIRK_SIGNED16_CURRENT) &&
|
||||||
|
battery->rate_now != -1)
|
||||||
|
battery->rate_now = abs((s16)battery->rate_now);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -497,6 +508,14 @@ static void sysfs_remove_battery(struct acpi_battery *battery)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static void acpi_battery_quirks(struct acpi_battery *battery)
|
||||||
|
{
|
||||||
|
battery->quirks = 0;
|
||||||
|
if (dmi_name_in_vendors("Acer") && battery->power_unit) {
|
||||||
|
battery->quirks |= QUIRK_SIGNED16_CURRENT;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static int acpi_battery_update(struct acpi_battery *battery)
|
static int acpi_battery_update(struct acpi_battery *battery)
|
||||||
{
|
{
|
||||||
int result, old_present = acpi_battery_present(battery);
|
int result, old_present = acpi_battery_present(battery);
|
||||||
|
@ -515,6 +534,7 @@ static int acpi_battery_update(struct acpi_battery *battery)
|
||||||
result = acpi_battery_get_info(battery);
|
result = acpi_battery_get_info(battery);
|
||||||
if (result)
|
if (result)
|
||||||
return result;
|
return result;
|
||||||
|
acpi_battery_quirks(battery);
|
||||||
acpi_battery_init_alarm(battery);
|
acpi_battery_init_alarm(battery);
|
||||||
}
|
}
|
||||||
#ifdef CONFIG_ACPI_SYSFS_POWER
|
#ifdef CONFIG_ACPI_SYSFS_POWER
|
||||||
|
|
Loading…
Reference in a new issue