diff options
author | Jonathan A. Kollasch <jakllsch@kollasch.net> | 2015-01-31 14:13:27 -0600 |
---|---|---|
committer | Jonathan A. Kollasch <jakllsch@kollasch.net> | 2015-02-01 16:43:39 +0100 |
commit | 679efee2d762d37b36096ac83dfa7583f5b74f99 (patch) | |
tree | 565e672c45c49dc852889de07d0b0b4452ff56a0 | |
parent | fcf5988cf61506309be16a2fed842a01c4dea799 (diff) | |
download | coreboot-679efee2d762d37b36096ac83dfa7583f5b74f99.tar.xz |
winent/mb6047: use correct ACPI SCI interrupt trigger
Change-Id: I245c0afb66f3a29b5acb40e8d949d8b1aa08cd73
Signed-off-by: Jonathan A. Kollasch <jakllsch@kollasch.net>
Reviewed-on: http://review.coreboot.org/8315
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Tested-by: build bot (Jenkins)
-rw-r--r-- | src/mainboard/winent/mb6047/acpi_tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/winent/mb6047/acpi_tables.c b/src/mainboard/winent/mb6047/acpi_tables.c index 0c7c3a5bd2..2b1084cebc 100644 --- a/src/mainboard/winent/mb6047/acpi_tables.c +++ b/src/mainboard/winent/mb6047/acpi_tables.c @@ -49,7 +49,7 @@ unsigned long acpi_fill_madt(unsigned long current) /* IRQ9 */ current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *) - current, 0, 9, 9, MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_LOW); + current, 0, 9, 9, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW); /* 0: mean bus 0--->ISA */ /* 0: PIC 0 */ |