acpi_ksyms.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  ksyms.c - ACPI exported symbols
  3.  *
  4.  *  Copyright (C) 2000 Andrew Grover
  5.  *
  6.  *  This program is free software; you can redistribute it and/or modify
  7.  *  it under the terms of the GNU General Public License as published by
  8.  *  the Free Software Foundation; either version 2 of the License, or
  9.  *  (at your option) any later version.
  10.  *
  11.  *  This program is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *  GNU General Public License for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License
  17.  *  along with this program; if not, write to the Free Software
  18.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20. #include <linux/config.h>
  21. #include <linux/module.h>
  22. #include <linux/init.h>
  23. #include <linux/kernel.h>
  24. #include <linux/types.h>
  25. #include <linux/acpi.h>
  26. #include "acpi.h"
  27. #include "acdebug.h"
  28. extern int acpi_in_debugger;
  29. extern FADT_DESCRIPTOR acpi_fadt;
  30. #define _COMPONENT OS_DEPENDENT
  31. MODULE_NAME ("symbols")
  32. #ifdef ENABLE_DEBUGGER
  33. EXPORT_SYMBOL(acpi_in_debugger);
  34. EXPORT_SYMBOL(acpi_db_user_commands);
  35. #endif
  36. #ifdef ACPI_DEBUG
  37. EXPORT_SYMBOL(acpi_ut_debug_print_raw);
  38. EXPORT_SYMBOL(acpi_ut_debug_print);
  39. EXPORT_SYMBOL(acpi_ut_status_exit);
  40. EXPORT_SYMBOL(acpi_ut_exit);
  41. EXPORT_SYMBOL(acpi_ut_trace);
  42. #endif
  43. EXPORT_SYMBOL(acpi_gbl_FADT);
  44. EXPORT_SYMBOL(acpi_os_free);
  45. EXPORT_SYMBOL(acpi_os_printf);
  46. EXPORT_SYMBOL(acpi_os_callocate);
  47. EXPORT_SYMBOL(acpi_os_sleep);
  48. EXPORT_SYMBOL(acpi_os_stall);
  49. EXPORT_SYMBOL(acpi_os_queue_for_execution);
  50. EXPORT_SYMBOL(acpi_dbg_layer);
  51. EXPORT_SYMBOL(acpi_dbg_level);
  52. EXPORT_SYMBOL(acpi_format_exception);
  53. EXPORT_SYMBOL(acpi_get_handle);
  54. EXPORT_SYMBOL(acpi_get_parent);
  55. EXPORT_SYMBOL(acpi_get_type);
  56. EXPORT_SYMBOL(acpi_get_name);
  57. EXPORT_SYMBOL(acpi_get_object_info);
  58. EXPORT_SYMBOL(acpi_get_next_object);
  59. EXPORT_SYMBOL(acpi_evaluate_object);
  60. EXPORT_SYMBOL(acpi_get_table);
  61. EXPORT_SYMBOL(acpi_install_notify_handler);
  62. EXPORT_SYMBOL(acpi_remove_notify_handler);
  63. EXPORT_SYMBOL(acpi_install_gpe_handler);
  64. EXPORT_SYMBOL(acpi_remove_gpe_handler);
  65. EXPORT_SYMBOL(acpi_install_address_space_handler);
  66. EXPORT_SYMBOL(acpi_remove_address_space_handler);
  67. EXPORT_SYMBOL(acpi_install_fixed_event_handler);
  68. EXPORT_SYMBOL(acpi_remove_fixed_event_handler);
  69. EXPORT_SYMBOL(acpi_acquire_global_lock);
  70. EXPORT_SYMBOL(acpi_release_global_lock);
  71. EXPORT_SYMBOL(acpi_get_current_resources);
  72. EXPORT_SYMBOL(acpi_get_possible_resources);
  73. EXPORT_SYMBOL(acpi_set_current_resources);
  74. EXPORT_SYMBOL(acpi_enable_event);
  75. EXPORT_SYMBOL(acpi_disable_event);
  76. EXPORT_SYMBOL(acpi_clear_event);
  77. EXPORT_SYMBOL(acpi_get_timer_duration);
  78. EXPORT_SYMBOL(acpi_get_timer);
  79. EXPORT_SYMBOL(acpi_os_signal_semaphore);
  80. EXPORT_SYMBOL(acpi_os_create_semaphore);
  81. EXPORT_SYMBOL(acpi_os_delete_semaphore);
  82. EXPORT_SYMBOL(acpi_os_wait_semaphore);
  83. EXPORT_SYMBOL(acpi_os_read_port);
  84. EXPORT_SYMBOL(acpi_os_write_port);
  85. EXPORT_SYMBOL(acpi_fadt);
  86. EXPORT_SYMBOL(acpi_hw_register_bit_access);
  87. EXPORT_SYMBOL(acpi_hw_obtain_sleep_type_register_data);
  88. EXPORT_SYMBOL(acpi_enter_sleep_state);
  89. EXPORT_SYMBOL(acpi_get_system_info);
  90. EXPORT_SYMBOL(acpi_leave_sleep_state);
  91. /*EXPORT_SYMBOL(acpi_save_state_mem);*/
  92. /*EXPORT_SYMBOL(acpi_save_state_disk);*/
  93. EXPORT_SYMBOL(acpi_hw_register_read);
  94. EXPORT_SYMBOL(acpi_set_firmware_waking_vector);
  95. EXPORT_SYMBOL(acpi_subsystem_status);
  96. EXPORT_SYMBOL(acpi_os_signal);