diff options
author | Len Brown <len.brown@intel.com> | 2005-12-28 03:20:03 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-12-28 03:23:34 -0500 |
commit | 3173cdfe02995f6c6841a28b5148f94cefd8ab77 (patch) | |
tree | c198a8189aefdd00d0ad059ea4eded29412ba1e8 /drivers | |
parent | defba1d8f233c0d5cf3e1ea6aeb898eca7231860 (diff) |
[ACPI] fix osl.c build warning
typecheck complains on i386 that u32 != unsigned long
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/acpi/osl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index 4ece850b2af1..58e7c47354ee 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
@@ -1073,7 +1073,7 @@ acpi_native_uint acpi_os_acquire_lock(acpi_handle handle) | |||
1073 | 1073 | ||
1074 | void acpi_os_release_lock(acpi_handle handle, acpi_native_uint flags) | 1074 | void acpi_os_release_lock(acpi_handle handle, acpi_native_uint flags) |
1075 | { | 1075 | { |
1076 | spin_unlock_irqrestore((spinlock_t *) handle, flags); | 1076 | spin_unlock_irqrestore((spinlock_t *) handle, (unsigned long) flags); |
1077 | } | 1077 | } |
1078 | 1078 | ||
1079 | #ifndef ACPI_USE_LOCAL_CACHE | 1079 | #ifndef ACPI_USE_LOCAL_CACHE |