aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi
diff options
context:
space:
mode:
authorAlexey Starikovskiy <alexey.y.starikovskiy@intel.com>2007-02-02 11:48:19 -0500
committerLen Brown <len.brown@intel.com>2007-02-02 21:14:23 -0500
commit69874165ab953a62f9adb3096ccd84ed2561a602 (patch)
tree892dc871d177e40b6c210ef1d5f234b81b4c65a0 /include/acpi
parent3d81b236a82a26fa8bdef9096829675d81890dc9 (diff)
ACPICA: Store GPE number instead of bitmask
Update internal GPE data structure to simplify debug, use gpe_number instead of register bitmask. Signed-off-by: Bob Moore <bob.moore@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r--include/acpi/acglobal.h1
-rw-r--r--include/acpi/aclocal.h2
2 files changed, 1 insertions, 2 deletions
diff --git a/include/acpi/acglobal.h b/include/acpi/acglobal.h
index b74cd9b670b5..0c2e1ae72c3d 100644
--- a/include/acpi/acglobal.h
+++ b/include/acpi/acglobal.h
@@ -240,7 +240,6 @@ ACPI_EXTERN u8 acpi_gbl_system_awake_and_running;
240 240
241extern u8 acpi_gbl_shutdown; 241extern u8 acpi_gbl_shutdown;
242extern u32 acpi_gbl_startup_flags; 242extern u32 acpi_gbl_startup_flags;
243extern const u8 acpi_gbl_decode_to8bit[8];
244extern const char *acpi_gbl_sleep_state_names[ACPI_S_STATE_COUNT]; 243extern const char *acpi_gbl_sleep_state_names[ACPI_S_STATE_COUNT];
245extern const char *acpi_gbl_highest_dstate_names[4]; 244extern const char *acpi_gbl_highest_dstate_names[4];
246extern const struct acpi_opcode_info acpi_gbl_aml_op_info[AML_NUM_OPCODES]; 245extern const struct acpi_opcode_info acpi_gbl_aml_op_info[AML_NUM_OPCODES];
diff --git a/include/acpi/aclocal.h b/include/acpi/aclocal.h
index a870484eaa03..553763d7312a 100644
--- a/include/acpi/aclocal.h
+++ b/include/acpi/aclocal.h
@@ -367,7 +367,7 @@ struct acpi_gpe_event_info {
367 union acpi_gpe_dispatch_info dispatch; /* Either Method or Handler */ 367 union acpi_gpe_dispatch_info dispatch; /* Either Method or Handler */
368 struct acpi_gpe_register_info *register_info; /* Backpointer to register info */ 368 struct acpi_gpe_register_info *register_info; /* Backpointer to register info */
369 u8 flags; /* Misc info about this GPE */ 369 u8 flags; /* Misc info about this GPE */
370 u8 register_bit; /* This GPE bit within the register */ 370 u8 gpe_number; /* This GPE */
371}; 371};
372 372
373/* Information about a GPE register pair, one per each status/enable pair in an array */ 373/* Information about a GPE register pair, one per each status/enable pair in an array */