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
bec5a1e0
Commit
bec5a1e0
authored
Dec 07, 2006
by
Alexey Starikovskiy
Committed by
Len Brown
Dec 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ACPI: ec: Read status register from check_status() function
Signed-off-by:
Len Brown
<
len.brown@intel.com
>
parent
5c406412
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
drivers/acpi/ec.c
drivers/acpi/ec.c
+6
-5
No files found.
drivers/acpi/ec.c
View file @
bec5a1e0
...
...
@@ -134,8 +134,9 @@ static inline void acpi_ec_write_data(struct acpi_ec *ec, u8 data)
outb
(
data
,
ec
->
data_addr
);
}
static
int
acpi_ec_check_status
(
u8
status
,
u8
event
)
static
int
acpi_ec_check_status
(
struct
acpi_ec
*
ec
,
u8
event
)
{
u8
status
=
acpi_ec_read_status
(
ec
);
switch
(
event
)
{
case
ACPI_EC_EVENT_OBF_1
:
if
(
status
&
ACPI_EC_FLAG_OBF
)
...
...
@@ -158,7 +159,7 @@ static int acpi_ec_wait(struct acpi_ec *ec, u8 event)
long
time_left
;
ec
->
expect_event
=
event
;
if
(
acpi_ec_check_status
(
acpi_ec_read_status
(
ec
)
,
event
))
{
if
(
acpi_ec_check_status
(
ec
,
event
))
{
ec
->
expect_event
=
0
;
return
0
;
}
...
...
@@ -175,7 +176,7 @@ static int acpi_ec_wait(struct acpi_ec *ec, u8 event)
return
0
;
}
}
if
(
acpi_ec_check_status
(
acpi_ec_read_status
(
ec
)
,
event
))
{
if
(
acpi_ec_check_status
(
ec
,
event
))
{
ec
->
expect_event
=
0
;
return
0
;
}
...
...
@@ -457,15 +458,15 @@ static u32 acpi_ec_gpe_handler(void *data)
struct
acpi_ec
*
ec
=
(
struct
acpi_ec
*
)
data
;
acpi_clear_gpe
(
NULL
,
ec
->
gpe_bit
,
ACPI_ISR
);
value
=
acpi_ec_read_status
(
ec
);
if
(
acpi_ec_mode
==
EC_INTR
)
{
if
(
acpi_ec_check_status
(
value
,
ec
->
expect_event
))
{
if
(
acpi_ec_check_status
(
ec
,
ec
->
expect_event
))
{
ec
->
expect_event
=
0
;
wake_up
(
&
ec
->
wait
);
}
}
value
=
acpi_ec_read_status
(
ec
);
if
(
value
&
ACPI_EC_FLAG_SCI
)
{
status
=
acpi_os_execute
(
OSL_EC_BURST_HANDLER
,
acpi_ec_gpe_query
,
ec
);
return
status
==
AE_OK
?
...
...
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