Skip to content

Commit

Permalink
leds-hp-disk: fix build warning
Browse files Browse the repository at this point in the history
drivers/leds/leds-hp-disk.c:59: warning: passing argument 4 of ‘acpi_evaluate_integer’ from incompatible pointer type

Signed-off-by: Len Brown <[email protected]>
  • Loading branch information
lenb committed Oct 25, 2008
1 parent f812338 commit 438f8de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/leds/leds-hp-disk.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ static struct acpi_hpled adev;

static acpi_status hpled_acpi_write(acpi_handle handle, int reg)
{
unsigned long ret; /* Not used when writing */
unsigned long long ret; /* Not used when writing */
union acpi_object in_obj[1];
struct acpi_object_list args = { 1, in_obj };

Expand Down

0 comments on commit 438f8de

Please sign in to comment.