Browse Source

ACPICA: Disassembler: Fix for gpio_int interrupt polarity flags.

The field is actually 2 bits, not 1.

Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Bob Moore 11 years ago
parent
commit
4cc0909ef2
1 changed files with 3 additions and 1 deletions
  1. 3 1
      drivers/acpi/acpica/utresrc.c

+ 3 - 1
drivers/acpi/acpica/utresrc.c

@@ -87,7 +87,9 @@ const char *acpi_gbl_io_decode[] = {
 
 
 const char *acpi_gbl_ll_decode[] = {
 const char *acpi_gbl_ll_decode[] = {
 	"ActiveHigh",
 	"ActiveHigh",
-	"ActiveLow"
+	"ActiveLow",
+	"ActiveBoth",
+	"Reserved"
 };
 };
 
 
 const char *acpi_gbl_max_decode[] = {
 const char *acpi_gbl_max_decode[] = {