~ubuntu-branches/debian/experimental/linux-tools/experimental

« back to all changes in this revision

Viewing changes to include/acpi/actbl.h

  • Committer: Package Import Robot
  • Author(s): Ben Hutchings
  • Date: 2014-02-02 16:57:49 UTC
  • mfrom: (1.1.10) (0.1.21 sid)
  • Revision ID: package-import@ubuntu.com-20140202165749-tw94o9t1t0a8txk6
Tags: 3.13-1~exp2
Merge changes from sid up to 3.12.6-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
        u8 reserved[3];         /* Reserved, must be zero */
147
147
};
148
148
 
149
 
#define ACPI_RSDP_REV0_SIZE     20      /* Size of original ACPI 1.0 RSDP */
 
149
/* Standalone struct for the ACPI 1.0 RSDP */
 
150
 
 
151
struct acpi_rsdp_common {
 
152
        char signature[8];
 
153
        u8 checksum;
 
154
        char oem_id[ACPI_OEM_ID_SIZE];
 
155
        u8 revision;
 
156
        u32 rsdt_physical_address;
 
157
};
 
158
 
 
159
/* Standalone struct for the extended part of the RSDP (ACPI 2.0+) */
 
160
 
 
161
struct acpi_rsdp_extension {
 
162
        u32 length;
 
163
        u64 xsdt_physical_address;
 
164
        u8 extended_checksum;
 
165
        u8 reserved[3];
 
166
};
150
167
 
151
168
/*******************************************************************************
152
169
 *