ACPICA: Core: Replace all %d format specifiers with %u (unsigned)
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / acpi / acpica / dsutils.c
index 306c62ab2e88ccaacb60546373350c8aad294a97..15135c25aa9bc38e2e83f0ad70e0310c0d519381 100644 (file)
@@ -746,7 +746,7 @@ acpi_ds_create_operands(struct acpi_walk_state *walk_state,
                index--;
 
                ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
-                                 "Arg #%d (%p) done, Arg1=%p\n", index, arg,
+                                 "Arg #%u (%p) done, Arg1=%p\n", index, arg,
                                  first_arg));
        }
 
@@ -760,7 +760,7 @@ acpi_ds_create_operands(struct acpi_walk_state *walk_state,
         */
        acpi_ds_obj_stack_pop_and_delete(arg_count, walk_state);
 
-       ACPI_EXCEPTION((AE_INFO, status, "While creating Arg %d", index));
+       ACPI_EXCEPTION((AE_INFO, status, "While creating Arg %u", index));
        return_ACPI_STATUS(status);
 }