mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-15 22:41:38 +00:00
ACPICA: Fix lint warning for 64-bit constant
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>
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user