diff options
author | Zhao, Lijian <lijian.zhao@intel.com> | 2016-03-16 17:48:06 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-06-08 22:23:53 +0200 |
commit | 1c6c5836bdecc03a126ed96e2b40aeca086172b7 (patch) | |
tree | f41c6ea68fd65f786fa61a867e129ab0a970ce28 /src/mainboard/intel/amenia/acpi | |
parent | bc46ac5c7d78e9bf552482382a168a509c7537d9 (diff) |
Intel/amenia: Make the device address more readable
Use central header file to include device address and interrupt
line to avoid confusion.
Change-Id: I9560031d9f6e12c665c8ae12f7028a67b6c8c904
Signed-off-by: Zhao, Lijian <lijian.zhao@intel.com>
Signed-off-by: Rohit Ainapure <rohit.m.ainapure@intel.com>
Reviewed-on: https://chromium.devtools.intel.com/7248
Tested-by: N, Harshapriya <harshapriya.n@intel.com>
Reviewed-by: Petrov, Andrey <andrey.petrov@intel.com>
Reviewed-on: https://chromium.devtools.intel.com/7580
Reviewed-by: N, Harshapriya <harshapriya.n@intel.com>
Tested-by: Petrov, Andrey <andrey.petrov@intel.com>
Reviewed-on: https://review.coreboot.org/15083
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/mainboard/intel/amenia/acpi')
-rw-r--r-- | src/mainboard/intel/amenia/acpi/mainboard.asl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/intel/amenia/acpi/mainboard.asl b/src/mainboard/intel/amenia/acpi/mainboard.asl index c83f48f837..a679471cd4 100644 --- a/src/mainboard/intel/amenia/acpi/mainboard.asl +++ b/src/mainboard/intel/amenia/acpi/mainboard.asl @@ -14,7 +14,7 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ -#include <soc/gpio_defs.h> +#include <on_board.h> Scope (\_SB) { @@ -65,7 +65,7 @@ Scope (\_SB.PCI0.I2C4) ) Interrupt (ResourceConsumer, Edge, ActiveLow) { - GPIO_18_IRQ + TOUCHPAD_INT } }) |