diff options
author | Robert Moore <robert.moore@intel.com> | 2005-04-18 22:49:35 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-07-12 00:08:52 -0400 |
commit | 44f6c01242da4e162f28d8e1216a8c7a91174605 (patch) | |
tree | 53f724764f1bd9036dfb049a643d198125cc9edc /include/acpi/acpixf.h | |
parent | ebb6e1a6122fd6b7c96470cfd4ce0f04150e5084 (diff) |
ACPICA 20050408 from Bob Moore
Fixed three cases in the interpreter where an "index"
argument to an ASL function was still (internally) 32
bits instead of the required 64 bits. This was the Index
argument to the Index, Mid, and Match operators.
The "strupr" function is now permanently local
(acpi_ut_strupr), since this is not a POSIX-defined
function and not present in most kernel-level C
libraries. References to the C library strupr function
have been removed from the headers.
Completed the deployment of static
functions/prototypes. All prototypes with the static
attribute have been moved from the headers to the owning
C file.
ACPICA 20050329 from Bob Moore
An error is now generated if an attempt is made to create
a Buffer Field of length zero (A CreateField with a length
operand of zero.)
The interpreter now issues a warning whenever executable
code at the module level is detected during ACPI table
load. This will give some idea of the prevalence of this
type of code.
Implemented support for references to named objects (other
than control methods) within package objects.
Enhanced package object output for the debug
object. Package objects are now completely dumped, showing
all elements.
Enhanced miscellaneous object output for the debug
object. Any object can now be written to the debug object
(for example, a device object can be written, and the type
of the object will be displayed.)
The "static" qualifier has been added to all local
functions across the core subsystem.
The number of "long" lines (> 80 chars) within the source
has been significantly reduced, by about 1/3.
Cleaned up all header files to ensure that all CA/iASL
functions are prototyped (even static functions) and the
formatting is consistent.
Two new header files have been added, acopcode.h and
acnames.h.
Removed several obsolete functions that were no longer
used.
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi/acpixf.h')
-rw-r--r-- | include/acpi/acpixf.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h index 00d78b79652e..f8f619f8e4f8 100644 --- a/include/acpi/acpixf.h +++ b/include/acpi/acpixf.h | |||
@@ -50,10 +50,9 @@ | |||
50 | #include "actbl.h" | 50 | #include "actbl.h" |
51 | 51 | ||
52 | 52 | ||
53 | /* | 53 | /* |
54 | * Global interfaces | 54 | * Global interfaces |
55 | */ | 55 | */ |
56 | |||
57 | acpi_status | 56 | acpi_status |
58 | acpi_initialize_subsystem ( | 57 | acpi_initialize_subsystem ( |
59 | void); | 58 | void); |
@@ -106,9 +105,8 @@ acpi_install_initialization_handler ( | |||
106 | #endif | 105 | #endif |
107 | 106 | ||
108 | /* | 107 | /* |
109 | * ACPI Memory manager | 108 | * ACPI Memory managment |
110 | */ | 109 | */ |
111 | |||
112 | void * | 110 | void * |
113 | acpi_allocate ( | 111 | acpi_allocate ( |
114 | u32 size); | 112 | u32 size); |
@@ -125,7 +123,6 @@ acpi_free ( | |||
125 | /* | 123 | /* |
126 | * ACPI table manipulation interfaces | 124 | * ACPI table manipulation interfaces |
127 | */ | 125 | */ |
128 | |||
129 | acpi_status | 126 | acpi_status |
130 | acpi_find_root_pointer ( | 127 | acpi_find_root_pointer ( |
131 | u32 flags, | 128 | u32 flags, |
@@ -168,7 +165,6 @@ acpi_get_firmware_table ( | |||
168 | /* | 165 | /* |
169 | * Namespace and name interfaces | 166 | * Namespace and name interfaces |
170 | */ | 167 | */ |
171 | |||
172 | acpi_status | 168 | acpi_status |
173 | acpi_walk_namespace ( | 169 | acpi_walk_namespace ( |
174 | acpi_object_type type, | 170 | acpi_object_type type, |
@@ -218,7 +214,6 @@ acpi_get_data ( | |||
218 | /* | 214 | /* |
219 | * Object manipulation and enumeration | 215 | * Object manipulation and enumeration |
220 | */ | 216 | */ |
221 | |||
222 | acpi_status | 217 | acpi_status |
223 | acpi_evaluate_object ( | 218 | acpi_evaluate_object ( |
224 | acpi_handle object, | 219 | acpi_handle object, |
@@ -262,7 +257,6 @@ acpi_get_parent ( | |||
262 | /* | 257 | /* |
263 | * Event handler interfaces | 258 | * Event handler interfaces |
264 | */ | 259 | */ |
265 | |||
266 | acpi_status | 260 | acpi_status |
267 | acpi_install_fixed_event_handler ( | 261 | acpi_install_fixed_event_handler ( |
268 | u32 acpi_event, | 262 | u32 acpi_event, |
@@ -319,7 +313,6 @@ acpi_install_exception_handler ( | |||
319 | /* | 313 | /* |
320 | * Event interfaces | 314 | * Event interfaces |
321 | */ | 315 | */ |
322 | |||
323 | acpi_status | 316 | acpi_status |
324 | acpi_acquire_global_lock ( | 317 | acpi_acquire_global_lock ( |
325 | u16 timeout, | 318 | u16 timeout, |
@@ -404,7 +397,6 @@ acpi_remove_gpe_block ( | |||
404 | /* | 397 | /* |
405 | * Resource interfaces | 398 | * Resource interfaces |
406 | */ | 399 | */ |
407 | |||
408 | typedef | 400 | typedef |
409 | acpi_status (*ACPI_WALK_RESOURCE_CALLBACK) ( | 401 | acpi_status (*ACPI_WALK_RESOURCE_CALLBACK) ( |
410 | struct acpi_resource *resource, | 402 | struct acpi_resource *resource, |
@@ -448,7 +440,6 @@ acpi_resource_to_address64 ( | |||
448 | /* | 440 | /* |
449 | * Hardware (ACPI device) interfaces | 441 | * Hardware (ACPI device) interfaces |
450 | */ | 442 | */ |
451 | |||
452 | acpi_status | 443 | acpi_status |
453 | acpi_get_register ( | 444 | acpi_get_register ( |
454 | u32 register_id, | 445 | u32 register_id, |