Skip to content

Commit

Permalink
Tables: Remove wrong table event macros
Browse files Browse the repository at this point in the history
There are wrong table event macros, this patch cleans them up.

Signed-off-by: Lv Zheng <lv.zheng@intel.com>
  • Loading branch information
Lv Zheng committed Aug 16, 2016
1 parent 42c7b84 commit fcc129d
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions source/include/actypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -1154,13 +1154,6 @@ typedef struct acpi_statistics
} ACPI_STATISTICS;


/* Table Event Types */

#define ACPI_TABLE_EVENT_LOAD 0x0
#define ACPI_TABLE_EVENT_UNLOAD 0x1
#define ACPI_NUM_TABLE_EVENTS 2


/*
* Types specific to the OS service interfaces
*/
Expand Down Expand Up @@ -1233,9 +1226,12 @@ ACPI_STATUS (*ACPI_TABLE_HANDLER) (
void *Table,
void *Context);

#define ACPI_TABLE_LOAD 0x0
#define ACPI_TABLE_UNLOAD 0x1
#define ACPI_NUM_TABLE_EVENTS 2

/* Table Event Types */

#define ACPI_TABLE_EVENT_LOAD 0x0
#define ACPI_TABLE_EVENT_UNLOAD 0x1
#define ACPI_NUM_TABLE_EVENTS 2


/* Address Spaces (For Operation Regions) */
Expand Down

0 comments on commit fcc129d

Please sign in to comment.