Skip to content

Commit

Permalink
ACPICA: Fix lint warning for 64-bit constant
Browse files Browse the repository at this point in the history
cast to u64.

Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Bob Moore authored and Len Brown committed Jul 7, 2010
1 parent de5668f commit 150dba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/acpi/acpica/nsrepair.c
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ acpi_ns_repair_null_element(struct acpi_predefined_data *data,

/* Need an Integer - create a zero-value integer */

new_object = acpi_ut_create_integer_object(0);
new_object = acpi_ut_create_integer_object((u64)0);
} else if (expected_btypes & ACPI_RTYPE_STRING) {

/* Need a String - create a NULL string */
Expand Down

0 comments on commit 150dba3

Please sign in to comment.