diff options
author | Len Brown <len.brown@intel.com> | 2008-10-25 03:52:16 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-10-25 04:07:14 -0400 |
commit | 438f8de46bc261b35d84771ae9992cfff3ff4dd8 (patch) | |
tree | c693e9a954f3480897a391cfa1ecffafd770d50b /drivers/leds/leds-hp-disk.c | |
parent | f8123381bae8d581d81f24b55719db3d9a6a262c (diff) |
leds-hp-disk: fix build warning
drivers/leds/leds-hp-disk.c:59: warning: passing argument 4 of ‘acpi_evaluate_integer’ from incompatible pointer type
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/leds/leds-hp-disk.c')
-rw-r--r-- | drivers/leds/leds-hp-disk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-hp-disk.c b/drivers/leds/leds-hp-disk.c index 53a25b1c2dae..74645ab15660 100644 --- a/drivers/leds/leds-hp-disk.c +++ b/drivers/leds/leds-hp-disk.c | |||
@@ -49,7 +49,7 @@ static struct acpi_hpled adev; | |||
49 | 49 | ||
50 | static acpi_status hpled_acpi_write(acpi_handle handle, int reg) | 50 | static acpi_status hpled_acpi_write(acpi_handle handle, int reg) |
51 | { | 51 | { |
52 | unsigned long ret; /* Not used when writing */ | 52 | unsigned long long ret; /* Not used when writing */ |
53 | union acpi_object in_obj[1]; | 53 | union acpi_object in_obj[1]; |
54 | struct acpi_object_list args = { 1, in_obj }; | 54 | struct acpi_object_list args = { 1, in_obj }; |
55 | 55 | ||