diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2010-10-18 08:42:48 -0700 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-10-19 13:44:21 -0400 |
commit | 5ba8b1c6fe40c314a02e28553c25552d8f1442e7 (patch) | |
tree | b5c2dd8138125eebd66d1dc0526226d948e37e12 /drivers/acpi/osl.c | |
parent | 3a2468d0274d10916baf5318f9004a8061533370 (diff) | |
download | talos-op-linux-5ba8b1c6fe40c314a02e28553c25552d8f1442e7.tar.gz talos-op-linux-5ba8b1c6fe40c314a02e28553c25552d8f1442e7.zip |
ACPI: remove dead code
Found by running make namespacecheck on linux-next
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/osl.c')
-rw-r--r-- | drivers/acpi/osl.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index 65b25a303b86..82097fd5a75b 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c @@ -780,16 +780,6 @@ void acpi_os_wait_events_complete(void *context) EXPORT_SYMBOL(acpi_os_wait_events_complete); /* - * Allocate the memory for a spinlock and initialize it. - */ -acpi_status acpi_os_create_lock(acpi_spinlock * handle) -{ - spin_lock_init(*handle); - - return AE_OK; -} - -/* * Deallocate the memory for a spinlock. */ void acpi_os_delete_lock(acpi_spinlock handle) @@ -1152,21 +1142,6 @@ int acpi_check_region(resource_size_t start, resource_size_t n, } EXPORT_SYMBOL(acpi_check_region); -int acpi_check_mem_region(resource_size_t start, resource_size_t n, - const char *name) -{ - struct resource res = { - .start = start, - .end = start + n - 1, - .name = name, - .flags = IORESOURCE_MEM, - }; - - return acpi_check_resource_conflict(&res); - -} -EXPORT_SYMBOL(acpi_check_mem_region); - /* * Let drivers know whether the resource checks are effective */ |