Deleted Added
full compact
acdisasm.h (228110) acdisasm.h (229989)
1/******************************************************************************
2 *
3 * Name: acdisasm.h - AML disassembler
4 *
5 *****************************************************************************/
6
7/*
1/******************************************************************************
2 *
3 * Name: acdisasm.h - AML disassembler
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2011, Intel Corp.
8 * Copyright (C) 2000 - 2012, Intel Corp.
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.

--- 41 unchanged lines hidden (view full) ---

58 * Do not change.
59 */
60#define ACPI_RAW_TABLE_DATA_HEADER "Raw Table Data"
61
62
63typedef const struct acpi_dmtable_info
64{
65 UINT8 Opcode;
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.

--- 41 unchanged lines hidden (view full) ---

58 * Do not change.
59 */
60#define ACPI_RAW_TABLE_DATA_HEADER "Raw Table Data"
61
62
63typedef const struct acpi_dmtable_info
64{
65 UINT8 Opcode;
66 UINT8 Offset;
66 UINT16 Offset;
67 char *Name;
68 UINT8 Flags;
69
70} ACPI_DMTABLE_INFO;
71
72#define DT_LENGTH 0x01 /* Field is a subtable length */
73#define DT_FLAG 0x02 /* Field is a flag value */
74#define DT_NON_ZERO 0x04 /* Field must be non-zero */

--- 790 unchanged lines hidden ---
67 char *Name;
68 UINT8 Flags;
69
70} ACPI_DMTABLE_INFO;
71
72#define DT_LENGTH 0x01 /* Field is a subtable length */
73#define DT_FLAG 0x02 /* Field is a flag value */
74#define DT_NON_ZERO 0x04 /* Field must be non-zero */

--- 790 unchanged lines hidden ---