diff options
author | Aaron Durbin <adurbin@chromium.org> | 2013-07-12 12:46:11 -0500 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2013-12-21 07:28:04 +0100 |
commit | 05d065cff5fe7a83cb7e5776dc9c6610032ac412 (patch) | |
tree | 3ac2328d60e4d0fd66c525936b6edac6f0188a54 /src/mainboard/google/bolt | |
parent | f584218544e7537623f8db5ce351c384f48f7450 (diff) |
bolt: make the gpio interrupts edge sensitive
The drivers in the kernel expect the devices using gpios
to generate interrupts to be edge sensitive. Make it so.
Change-Id: I920ef621682d33ba081f737e97f0239f903db2f7
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/61678
Reviewed-by: Stefan Reinauer <reinauer@google.com>
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-on: http://review.coreboot.org/4361
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/mainboard/google/bolt')
-rw-r--r-- | src/mainboard/google/bolt/acpi/mainboard.asl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/bolt/acpi/mainboard.asl b/src/mainboard/google/bolt/acpi/mainboard.asl index c579499256..c62a96e1fb 100644 --- a/src/mainboard/google/bolt/acpi/mainboard.asl +++ b/src/mainboard/google/bolt/acpi/mainboard.asl @@ -49,7 +49,7 @@ Scope (\_SB) Name (_CRS, ResourceTemplate() { - Interrupt (ResourceConsumer, Level, ActiveLow) + Interrupt (ResourceConsumer, Edge, ActiveLow) { BOARD_TRACKPAD_IRQ } @@ -84,7 +84,7 @@ Scope (\_SB) Name (_CRS, ResourceTemplate() { - Interrupt (ResourceConsumer, Level, ActiveLow) + Interrupt (ResourceConsumer, Edge, ActiveLow) { BOARD_TOUCHSCREEN_IRQ } |