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/pci_bind.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/pci_bind.c')
-rw-r--r-- | drivers/acpi/pci_bind.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/acpi/pci_bind.c b/drivers/acpi/pci_bind.c index 388300de005d..4b252ea0e952 100644 --- a/drivers/acpi/pci_bind.c +++ b/drivers/acpi/pci_bind.c | |||
@@ -44,6 +44,8 @@ struct acpi_pci_data { | |||
44 | struct pci_dev *dev; | 44 | struct pci_dev *dev; |
45 | }; | 45 | }; |
46 | 46 | ||
47 | static int acpi_pci_unbind(struct acpi_device *device); | ||
48 | |||
47 | static void acpi_pci_data_handler(acpi_handle handle, u32 function, | 49 | static void acpi_pci_data_handler(acpi_handle handle, u32 function, |
48 | void *context) | 50 | void *context) |
49 | { | 51 | { |
@@ -267,7 +269,7 @@ int acpi_pci_bind(struct acpi_device *device) | |||
267 | return result; | 269 | return result; |
268 | } | 270 | } |
269 | 271 | ||
270 | int acpi_pci_unbind(struct acpi_device *device) | 272 | static int acpi_pci_unbind(struct acpi_device *device) |
271 | { | 273 | { |
272 | int result = 0; | 274 | int result = 0; |
273 | acpi_status status = AE_OK; | 275 | acpi_status status = AE_OK; |