From 704a400fa9b4965b0c1d4055cb6a434d92a7e1a5 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. BUG=None BRANCH=None TEST=Built and booted. Devices continue to work. Change-Id: I920ef621682d33ba081f737e97f0239f903db2f7 Signed-off-by: Aaron Durbin Reviewed-on: https://gerrit.chromium.org/gerrit/61678 Reviewed-by: Stefan Reinauer Reviewed-by: Duncan Laurie --- 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 }