diff options
Diffstat (limited to 'drivers/acpi/osl.c')
-rw-r--r-- | drivers/acpi/osl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index 8653dac01a76..cc4a4903842a 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
@@ -204,11 +204,13 @@ acpi_os_map_memory(acpi_physical_address phys, acpi_size size, | |||
204 | 204 | ||
205 | return AE_OK; | 205 | return AE_OK; |
206 | } | 206 | } |
207 | EXPORT_SYMBOL_GPL(acpi_os_map_memory); | ||
207 | 208 | ||
208 | void acpi_os_unmap_memory(void __iomem * virt, acpi_size size) | 209 | void acpi_os_unmap_memory(void __iomem * virt, acpi_size size) |
209 | { | 210 | { |
210 | iounmap(virt); | 211 | iounmap(virt); |
211 | } | 212 | } |
213 | EXPORT_SYMBOL_GPL(acpi_os_unmap_memory); | ||
212 | 214 | ||
213 | #ifdef ACPI_FUTURE_USAGE | 215 | #ifdef ACPI_FUTURE_USAGE |
214 | acpi_status | 216 | acpi_status |
@@ -1058,11 +1060,9 @@ EXPORT_SYMBOL(max_cstate); | |||
1058 | * Acquire a spinlock. | 1060 | * Acquire a spinlock. |
1059 | * | 1061 | * |
1060 | * handle is a pointer to the spinlock_t. | 1062 | * handle is a pointer to the spinlock_t. |
1061 | * flags is *not* the result of save_flags - it is an ACPI-specific flag variable | ||
1062 | * that indicates whether we are at interrupt level. | ||
1063 | */ | 1063 | */ |
1064 | 1064 | ||
1065 | unsigned long acpi_os_acquire_lock(acpi_handle handle) | 1065 | acpi_native_uint acpi_os_acquire_lock(acpi_handle handle) |
1066 | { | 1066 | { |
1067 | unsigned long flags; | 1067 | unsigned long flags; |
1068 | spin_lock_irqsave((spinlock_t *) handle, flags); | 1068 | spin_lock_irqsave((spinlock_t *) handle, flags); |
@@ -1073,9 +1073,9 @@ unsigned long acpi_os_acquire_lock(acpi_handle handle) | |||
1073 | * Release a spinlock. See above. | 1073 | * Release a spinlock. See above. |
1074 | */ | 1074 | */ |
1075 | 1075 | ||
1076 | void acpi_os_release_lock(acpi_handle handle, unsigned long flags) | 1076 | void acpi_os_release_lock(acpi_handle handle, acpi_native_uint flags) |
1077 | { | 1077 | { |
1078 | spin_unlock_irqrestore((spinlock_t *) handle, flags); | 1078 | spin_unlock_irqrestore((spinlock_t *) handle, (unsigned long) flags); |
1079 | } | 1079 | } |
1080 | 1080 | ||
1081 | #ifndef ACPI_USE_LOCAL_CACHE | 1081 | #ifndef ACPI_USE_LOCAL_CACHE |