aboutsummaryrefslogtreecommitdiff
path: root/include/aclocal.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/aclocal.h')
-rw-r--r--include/aclocal.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/include/aclocal.h b/include/aclocal.h
index 2ad9521103c1..d29a72157639 100644
--- a/include/aclocal.h
+++ b/include/aclocal.h
@@ -5,7 +5,7 @@
*****************************************************************************/
/*
- * Copyright (C) 2000 - 2011, Intel Corp.
+ * Copyright (C) 2000 - 2012, Intel Corp.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -755,6 +755,17 @@ typedef
ACPI_STATUS (*ACPI_EXECUTE_OP) (
struct acpi_walk_state *WalkState);
+/* Address Range info block */
+
+typedef struct acpi_address_range
+{
+ struct acpi_address_range *Next;
+ ACPI_NAMESPACE_NODE *RegionNode;
+ ACPI_PHYSICAL_ADDRESS StartAddress;
+ ACPI_PHYSICAL_ADDRESS EndAddress;
+
+} ACPI_ADDRESS_RANGE;
+
/*****************************************************************************
*