From 05d065cff5fe7a83cb7e5776dc9c6610032ac412 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Fri, 12 Jul 2013 12:46:11 -0500 Subject: [PATCH] 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 Reviewed-on: https://gerrit.chromium.org/gerrit/61678 Reviewed-by: Stefan Reinauer Reviewed-by: Duncan Laurie Reviewed-on: http://review.coreboot.org/4361 Reviewed-by: Patrick Georgi Tested-by: build bot (Jenkins) --- src/mainboard/google/bolt/acpi/mainboard.asl | 4 ++-- 1 file 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 }