diff options
author | Adrian Bunk <bunk@kernel.org> | 2007-10-24 12:24:42 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-02-07 03:33:23 -0500 |
commit | e5685b9d35c2cc0a98425b05df30cb837dd1e632 (patch) | |
tree | 7f10940d8bdaa18cd806d42a3fdb63cfefc47f37 /drivers/acpi/numa.c | |
parent | 87ecd5cddaa37f057d8d8c2813e1b748b1804423 (diff) |
ACPI: misc cleanups
This patch contains the following possible cleanups:
- make the following needlessly global code static:
- drivers/acpi/bay.c:dev_attr_eject
- drivers/acpi/bay.c:dev_attr_present
- drivers/acpi/dock.c:dev_attr_docked
- drivers/acpi/dock.c:dev_attr_flags
- drivers/acpi/dock.c:dev_attr_uid
- drivers/acpi/dock.c:dev_attr_undock
- drivers/acpi/pci_bind.c:acpi_pci_unbind()
- drivers/acpi/pci_link.c:acpi_link_lock
- drivers/acpi/sbs.c:acpi_sbs_callback()
- drivers/acpi/sbshc.c:acpi_smbus_transaction()
- drivers/acpi/sleep/main.c:acpi_sleep_prepare()
- #if 0 the following unused global functions:
- drivers/acpi/numa.c:acpi_unmap_pxm_to_node()
- remove the following unused EXPORT_SYMBOL's:
- acpi_register_gsi
- acpi_unregister_gsi
- acpi_strict
- acpi_bus_receive_event
- register_acpi_bus_type
- unregister_acpi_bus_type
- acpi_os_printf
- acpi_os_sleep
- acpi_os_stall
- acpi_os_read_pci_configuration
- acpi_os_create_semaphore
- acpi_os_delete_semaphore
- acpi_os_wait_semaphore
- acpi_os_signal_semaphore
- acpi_os_signal
- acpi_pci_irq_enable
- acpi_get_pxm
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/numa.c')
-rw-r--r-- | drivers/acpi/numa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/numa.c b/drivers/acpi/numa.c index 0822d9fc1cb4..5d59cb33b1a5 100644 --- a/drivers/acpi/numa.c +++ b/drivers/acpi/numa.c | |||
@@ -78,6 +78,7 @@ int acpi_map_pxm_to_node(int pxm) | |||
78 | return node; | 78 | return node; |
79 | } | 79 | } |
80 | 80 | ||
81 | #if 0 | ||
81 | void __cpuinit acpi_unmap_pxm_to_node(int node) | 82 | void __cpuinit acpi_unmap_pxm_to_node(int node) |
82 | { | 83 | { |
83 | int pxm = node_to_pxm_map[node]; | 84 | int pxm = node_to_pxm_map[node]; |
@@ -85,6 +86,7 @@ void __cpuinit acpi_unmap_pxm_to_node(int node) | |||
85 | node_to_pxm_map[node] = PXM_INVAL; | 86 | node_to_pxm_map[node] = PXM_INVAL; |
86 | node_clear(node, nodes_found_map); | 87 | node_clear(node, nodes_found_map); |
87 | } | 88 | } |
89 | #endif /* 0 */ | ||
88 | 90 | ||
89 | static void __init | 91 | static void __init |
90 | acpi_table_print_srat_entry(struct acpi_subtable_header *header) | 92 | acpi_table_print_srat_entry(struct acpi_subtable_header *header) |
@@ -247,7 +249,6 @@ int acpi_get_pxm(acpi_handle h) | |||
247 | } while (ACPI_SUCCESS(status)); | 249 | } while (ACPI_SUCCESS(status)); |
248 | return -1; | 250 | return -1; |
249 | } | 251 | } |
250 | EXPORT_SYMBOL(acpi_get_pxm); | ||
251 | 252 | ||
252 | int acpi_get_node(acpi_handle *handle) | 253 | int acpi_get_node(acpi_handle *handle) |
253 | { | 254 | { |