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
2f2e3f6d
Commit
2f2e3f6d
authored
Dec 02, 2011
by
Jeremy Fitzhardinge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hid-input/battery: make the battery setup common for INPUTs and FEATUREs
Signed-off-by:
Jeremy Fitzhardinge
<
jeremy@goop.org
>
parent
fb8ac91b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
23 deletions
+20
-23
drivers/hid/hid-input.c
drivers/hid/hid-input.c
+20
-23
No files found.
drivers/hid/hid-input.c
View file @
2f2e3f6d
...
...
@@ -351,20 +351,22 @@ static int hidinput_get_battery_property(struct power_supply *psy,
return
ret
;
}
static
void
hidinput_setup_battery
(
struct
hid_device
*
dev
,
unsigned
report_type
,
unsigned
report_id
,
s32
min
,
s32
max
)
static
bool
hidinput_setup_battery
(
struct
hid_device
*
dev
,
unsigned
report_type
,
struct
hid_field
*
field
)
{
struct
power_supply
*
battery
=
&
dev
->
battery
;
int
ret
;
unsigned
quirks
;
s32
min
,
max
;
if
(
field
->
usage
->
hid
!=
HID_DC_BATTERYSTRENGTH
)
return
false
;
/* no match */
if
(
battery
->
name
!=
NULL
)
return
;
/* already initialized? */
goto
out
;
/* already initialized? */
battery
->
name
=
kasprintf
(
GFP_KERNEL
,
"hid-%s-battery"
,
dev
->
uniq
);
if
(
battery
->
name
==
NULL
)
return
;
goto
out
;
battery
->
type
=
POWER_SUPPLY_TYPE_USB
;
battery
->
properties
=
hidinput_battery_props
;
...
...
@@ -374,6 +376,9 @@ static void hidinput_setup_battery(struct hid_device *dev,
quirks
=
find_battery_quirk
(
dev
);
min
=
field
->
logical_minimum
;
max
=
field
->
logical_maximum
;
if
(
quirks
&
HID_BATTERY_QUIRK_PERCENT
)
{
min
=
0
;
max
=
100
;
...
...
@@ -382,7 +387,7 @@ static void hidinput_setup_battery(struct hid_device *dev,
dev
->
battery_min
=
min
;
dev
->
battery_max
=
max
;
dev
->
battery_report_type
=
report_type
;
dev
->
battery_report_id
=
report_
id
;
dev
->
battery_report_id
=
field
->
report
->
id
;
ret
=
power_supply_register
(
&
dev
->
dev
,
battery
);
if
(
ret
!=
0
)
{
...
...
@@ -390,6 +395,9 @@ static void hidinput_setup_battery(struct hid_device *dev,
kfree
(
battery
->
name
);
battery
->
name
=
NULL
;
}
out:
return
true
;
}
static
void
hidinput_cleanup_battery
(
struct
hid_device
*
dev
)
...
...
@@ -402,10 +410,10 @@ static void hidinput_cleanup_battery(struct hid_device *dev)
dev
->
battery
.
name
=
NULL
;
}
#else
/* !CONFIG_HID_BATTERY_STRENGTH */
static
void
hidinput_setup_battery
(
struct
hid_device
*
dev
,
unsigned
report_type
,
unsigned
report_id
,
s32
min
,
s32
max
)
static
bool
hidinput_setup_battery
(
struct
hid_device
*
dev
,
unsigned
report_type
,
struct
hid_field
*
field
)
{
return
false
;
}
static
void
hidinput_cleanup_battery
(
struct
hid_device
*
dev
)
...
...
@@ -772,14 +780,9 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel
break
;
case
HID_UP_GENDEVCTRLS
:
if
((
usage
->
hid
&
HID_USAGE
)
==
0x20
)
{
/* Battery Strength */
hidinput_setup_battery
(
device
,
HID_INPUT_REPORT
,
field
->
report
->
id
,
field
->
logical_minimum
,
field
->
logical_maximum
);
if
(
hidinput_setup_battery
(
device
,
HID_INPUT_REPORT
,
field
))
goto
ignore
;
}
else
else
goto
unknown
;
break
;
...
...
@@ -1055,13 +1058,7 @@ static void report_features(struct hid_device *hid)
for
(
i
=
0
;
i
<
rep
->
maxfield
;
i
++
)
for
(
j
=
0
;
j
<
rep
->
field
[
i
]
->
maxusage
;
j
++
)
{
/* Verify if Battery Strength feature is available */
if
(((
rep
->
field
[
i
]
->
usage
+
j
)
->
hid
&
HID_USAGE_PAGE
)
==
HID_UP_GENDEVCTRLS
&&
((
rep
->
field
[
i
]
->
usage
+
j
)
->
hid
&
HID_USAGE
)
==
0x20
)
{
hidinput_setup_battery
(
hid
,
HID_FEATURE_REPORT
,
rep
->
id
,
rep
->
field
[
i
]
->
logical_minimum
,
rep
->
field
[
i
]
->
logical_maximum
);
}
hidinput_setup_battery
(
hid
,
HID_FEATURE_REPORT
,
rep
->
field
[
i
]);
if
(
drv
->
feature_mapping
)
drv
->
feature_mapping
(
hid
,
rep
->
field
[
i
],
...
...
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