Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 44935
b: refs/heads/master
c: bec5a1e
h: refs/heads/master
i:
  44933: 7979909
  44931: 9e5c2fb
  44927: e160831
v: v3
  • Loading branch information
Alexey Starikovskiy authored and Len Brown committed Dec 8, 2006
1 parent 8d94f0e commit f400e00
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5c4064124a5720a2576eb4bd5b7200d70052e9b5
refs/heads/master: bec5a1e0604d1b829b87b4b7e85f71ccc43dda50
11 changes: 6 additions & 5 deletions trunk/drivers/acpi/ec.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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;
}
Expand All @@ -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;
}
Expand Down Expand Up @@ -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 ?
Expand Down

0 comments on commit f400e00

Please sign in to comment.