Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
88030808
Commit
88030808
authored
Oct 25, 2010
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'battery' into release
parents
e000f8f7
a1b4bd69
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
8 deletions
+27
-8
drivers/acpi/battery.c
drivers/acpi/battery.c
+27
-8
No files found.
drivers/acpi/battery.c
View file @
88030808
...
...
@@ -181,6 +181,7 @@ static int acpi_battery_get_property(struct power_supply *psy,
enum
power_supply_property
psp
,
union
power_supply_propval
*
val
)
{
int
ret
=
0
;
struct
acpi_battery
*
battery
=
to_acpi_battery
(
psy
);
if
(
acpi_battery_present
(
battery
))
{
...
...
@@ -209,25 +210,43 @@ static int acpi_battery_get_property(struct power_supply *psy,
val
->
intval
=
battery
->
cycle_count
;
break
;
case
POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
if
(
battery
->
design_voltage
==
ACPI_BATTERY_VALUE_UNKNOWN
)
ret
=
-
ENODEV
;
else
val
->
intval
=
battery
->
design_voltage
*
1000
;
break
;
case
POWER_SUPPLY_PROP_VOLTAGE_NOW
:
if
(
battery
->
voltage_now
==
ACPI_BATTERY_VALUE_UNKNOWN
)
ret
=
-
ENODEV
;
else
val
->
intval
=
battery
->
voltage_now
*
1000
;
break
;
case
POWER_SUPPLY_PROP_CURRENT_NOW
:
case
POWER_SUPPLY_PROP_POWER_NOW
:
if
(
battery
->
rate_now
==
ACPI_BATTERY_VALUE_UNKNOWN
)
ret
=
-
ENODEV
;
else
val
->
intval
=
battery
->
rate_now
*
1000
;
break
;
case
POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
:
case
POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
:
if
(
battery
->
design_capacity
==
ACPI_BATTERY_VALUE_UNKNOWN
)
ret
=
-
ENODEV
;
else
val
->
intval
=
battery
->
design_capacity
*
1000
;
break
;
case
POWER_SUPPLY_PROP_CHARGE_FULL
:
case
POWER_SUPPLY_PROP_ENERGY_FULL
:
if
(
battery
->
full_charge_capacity
==
ACPI_BATTERY_VALUE_UNKNOWN
)
ret
=
-
ENODEV
;
else
val
->
intval
=
battery
->
full_charge_capacity
*
1000
;
break
;
case
POWER_SUPPLY_PROP_CHARGE_NOW
:
case
POWER_SUPPLY_PROP_ENERGY_NOW
:
if
(
battery
->
capacity_now
==
ACPI_BATTERY_VALUE_UNKNOWN
)
ret
=
-
ENODEV
;
else
val
->
intval
=
battery
->
capacity_now
*
1000
;
break
;
case
POWER_SUPPLY_PROP_MODEL_NAME
:
...
...
@@ -240,9 +259,9 @@ static int acpi_battery_get_property(struct power_supply *psy,
val
->
strval
=
battery
->
serial_number
;
break
;
default:
ret
urn
-
EINVAL
;
ret
=
-
EINVAL
;
}
return
0
;
return
ret
;
}
static
enum
power_supply_property
charge_battery_props
[]
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment