Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 19518
b: refs/heads/master
c: 53f11d4
h: refs/heads/master
v: v3
  • Loading branch information
Len Brown committed Dec 5, 2005
1 parent 7bff613 commit fea7737
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 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: 02b28a33aae93a3b53068e0858d62f8bcaef60a3
refs/heads/master: 53f11d4ff8797bcceaf014e62bd39f16ce84baec
5 changes: 5 additions & 0 deletions trunk/Documentation/kernel-parameters.txt
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,11 @@ running once the system is up.

eata= [HW,SCSI]

ec_intr= [HW,ACPI] ACPI Embedded Controller interrupt mode
Format: <int>
0: polling mode
non-0: interrupt mode (default)

eda= [HW,PS2]

edb= [HW,PS2]
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/acpi/ec.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static struct acpi_driver acpi_ec_driver = {
.class = ACPI_EC_CLASS,
.ids = ACPI_EC_HID,
.ops = {
.add = acpi_ec_poll_add,
.add = acpi_ec_intr_add,
.remove = acpi_ec_remove,
.start = acpi_ec_start,
.stop = acpi_ec_stop,
Expand Down Expand Up @@ -147,7 +147,7 @@ static union acpi_ec *ec_ecdt;

/* External interfaces use first EC only, so remember */
static struct acpi_device *first_ec;
static int acpi_ec_poll_mode = EC_POLL;
static int acpi_ec_poll_mode = EC_INTR;

/* --------------------------------------------------------------------------
Transaction Management
Expand Down Expand Up @@ -1594,4 +1594,4 @@ static int __init acpi_ec_set_intr_mode(char *str)
return 0;
}

__setup("ec_burst=", acpi_ec_set_intr_mode);
__setup("ec_intr=", acpi_ec_set_intr_mode);

0 comments on commit fea7737

Please sign in to comment.