aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/hardware/hwregs.c
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2006-10-03 00:00:00 -0400
committerLen Brown <len.brown@intel.com>2006-04-01 01:26:39 -0500
commit8313524a0d466f451a62709aaedf988d8257b21c (patch)
treed612fc796ae07d8a39542c95eec0f5169c9f64eb /drivers/acpi/hardware/hwregs.c
parentea936b78f46cbe089a4ac363e1682dee7d427096 (diff)
ACPI: ACPICA 20060310
Tagged all external interfaces to the subsystem with the new ACPI_EXPORT_SYMBOL macro. This macro can be defined as necessary to assist kernel integration. For Linux, the macro resolves to the EXPORT_SYMBOL macro. The default definition is NULL. Added the ACPI_THREAD_ID type for the return value from acpi_os_get_thread_id(). This allows the host to define this as necessary to simplify kernel integration. The default definition is ACPI_NATIVE_UINT. Valery Podrezov fixed two interpreter problems related to error processing, the deletion of objects, and placing invalid pointers onto the internal operator result stack. http://bugzilla.kernel.org/show_bug.cgi?id=6028 http://bugzilla.kernel.org/show_bug.cgi?id=6151 Increased the reference count threshold where a warning is emitted for large reference counts in order to eliminate unnecessary warnings on systems with large namespaces (especially 64-bit.) Increased the value from 0x400 to 0x800. Due to universal disagreement as to the meaning of the 'c' in the calloc() function, the ACPI_MEM_CALLOCATE macro has been renamed to ACPI_ALLOCATE_ZEROED so that the purpose of the interface is 'clear'. ACPI_MEM_ALLOCATE and ACPI_MEM_FREE are renamed to ACPI_ALLOCATE and ACPI_FREE. Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/hardware/hwregs.c')
-rw-r--r--drivers/acpi/hardware/hwregs.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/acpi/hardware/hwregs.c b/drivers/acpi/hardware/hwregs.c
index 95c4ccb3a378..3d1f41c6bfe9 100644
--- a/drivers/acpi/hardware/hwregs.c
+++ b/drivers/acpi/hardware/hwregs.c
@@ -43,8 +43,6 @@
43 * POSSIBILITY OF SUCH DAMAGES. 43 * POSSIBILITY OF SUCH DAMAGES.
44 */ 44 */
45 45
46#include <linux/module.h>
47
48#include <acpi/acpi.h> 46#include <acpi/acpi.h>
49#include <acpi/acnamesp.h> 47#include <acpi/acnamesp.h>
50#include <acpi/acevents.h> 48#include <acpi/acevents.h>
@@ -220,7 +218,7 @@ acpi_get_sleep_type_data(u8 sleep_state, u8 * sleep_type_a, u8 * sleep_type_b)
220 return_ACPI_STATUS(status); 218 return_ACPI_STATUS(status);
221} 219}
222 220
223EXPORT_SYMBOL(acpi_get_sleep_type_data); 221ACPI_EXPORT_SYMBOL(acpi_get_sleep_type_data)
224 222
225/******************************************************************************* 223/*******************************************************************************
226 * 224 *
@@ -233,7 +231,6 @@ EXPORT_SYMBOL(acpi_get_sleep_type_data);
233 * DESCRIPTION: Map register_id into a register bitmask. 231 * DESCRIPTION: Map register_id into a register bitmask.
234 * 232 *
235 ******************************************************************************/ 233 ******************************************************************************/
236
237struct acpi_bit_register_info *acpi_hw_get_bit_register_info(u32 register_id) 234struct acpi_bit_register_info *acpi_hw_get_bit_register_info(u32 register_id)
238{ 235{
239 ACPI_FUNCTION_ENTRY(); 236 ACPI_FUNCTION_ENTRY();
@@ -312,7 +309,7 @@ acpi_status acpi_get_register(u32 register_id, u32 * return_value, u32 flags)
312 return_ACPI_STATUS(status); 309 return_ACPI_STATUS(status);
313} 310}
314 311
315EXPORT_SYMBOL(acpi_get_register); 312ACPI_EXPORT_SYMBOL(acpi_get_register)
316 313
317/******************************************************************************* 314/*******************************************************************************
318 * 315 *
@@ -328,7 +325,6 @@ EXPORT_SYMBOL(acpi_get_register);
328 * DESCRIPTION: ACPI Bit Register write function. 325 * DESCRIPTION: ACPI Bit Register write function.
329 * 326 *
330 ******************************************************************************/ 327 ******************************************************************************/
331
332acpi_status acpi_set_register(u32 register_id, u32 value, u32 flags) 328acpi_status acpi_set_register(u32 register_id, u32 value, u32 flags)
333{ 329{
334 u32 register_value = 0; 330 u32 register_value = 0;
@@ -475,7 +471,7 @@ acpi_status acpi_set_register(u32 register_id, u32 value, u32 flags)
475 return_ACPI_STATUS(status); 471 return_ACPI_STATUS(status);
476} 472}
477 473
478EXPORT_SYMBOL(acpi_set_register); 474ACPI_EXPORT_SYMBOL(acpi_set_register)
479 475
480/****************************************************************************** 476/******************************************************************************
481 * 477 *
@@ -491,7 +487,6 @@ EXPORT_SYMBOL(acpi_set_register);
491 * given offset. 487 * given offset.
492 * 488 *
493 ******************************************************************************/ 489 ******************************************************************************/
494
495acpi_status 490acpi_status
496acpi_hw_register_read(u8 use_lock, u32 register_id, u32 * return_value) 491acpi_hw_register_read(u8 use_lock, u32 register_id, u32 * return_value)
497{ 492{