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
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
29 extern int acpi_in_debugger;
30
31 #define _COMPONENT OS_DEPENDENT
32 MODULE_NAME ("symbols")
33
34 #ifdef ENABLE_DEBUGGER
35 EXPORT_SYMBOL(acpi_in_debugger);
36 EXPORT_SYMBOL(acpi_db_user_commands);
37 #endif
38
39 EXPORT_SYMBOL(acpi_os_free);
40 EXPORT_SYMBOL(acpi_os_breakpoint);
41 EXPORT_SYMBOL(acpi_os_printf);
42 EXPORT_SYMBOL(acpi_os_callocate);
43 EXPORT_SYMBOL(acpi_os_sleep);
44 EXPORT_SYMBOL(acpi_os_sleep_usec);
45 EXPORT_SYMBOL(acpi_os_in8);
46 EXPORT_SYMBOL(acpi_os_out8);
47 EXPORT_SYMBOL(acpi_os_queue_for_execution);
48
49 EXPORT_SYMBOL(acpi_dbg_layer);
50 EXPORT_SYMBOL(acpi_dbg_level);
51 EXPORT_SYMBOL(function_exit);
52 EXPORT_SYMBOL(function_trace);
53 EXPORT_SYMBOL(function_status_exit);
54 EXPORT_SYMBOL(function_value_exit);
55 EXPORT_SYMBOL(debug_print_raw);
56 EXPORT_SYMBOL(debug_print_prefix);
57
58 EXPORT_SYMBOL(acpi_cm_strncmp);
59 EXPORT_SYMBOL(acpi_cm_memcpy);
60 EXPORT_SYMBOL(acpi_cm_memset);
61
62 EXPORT_SYMBOL(acpi_get_handle);
63 EXPORT_SYMBOL(acpi_get_parent);
64 EXPORT_SYMBOL(acpi_get_type);
65 EXPORT_SYMBOL(acpi_get_name);
66 EXPORT_SYMBOL(acpi_get_object_info);
67 EXPORT_SYMBOL(acpi_get_next_object);
68 EXPORT_SYMBOL(acpi_evaluate_object);
69
70 EXPORT_SYMBOL(acpi_install_notify_handler);
71 EXPORT_SYMBOL(acpi_remove_notify_handler);
72 EXPORT_SYMBOL(acpi_install_gpe_handler);
73 EXPORT_SYMBOL(acpi_remove_gpe_handler);
74 EXPORT_SYMBOL(acpi_install_address_space_handler);
75 EXPORT_SYMBOL(acpi_remove_address_space_handler);
76
77 EXPORT_SYMBOL(acpi_get_current_resources);
78 EXPORT_SYMBOL(acpi_get_possible_resources);
79 EXPORT_SYMBOL(acpi_set_current_resources);
80
81 EXPORT_SYMBOL(acpi_enable_event);
82 EXPORT_SYMBOL(acpi_disable_event);
83 EXPORT_SYMBOL(acpi_clear_event);
84
85 EXPORT_SYMBOL(acpi_get_processor_throttling_info);
86 EXPORT_SYMBOL(acpi_get_processor_throttling_state);
87 EXPORT_SYMBOL(acpi_set_processor_throttling_state);
88
89 EXPORT_SYMBOL(acpi_get_processor_cx_info);
90 EXPORT_SYMBOL(acpi_set_processor_sleep_state);
91 EXPORT_SYMBOL(acpi_processor_sleep);
92
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.