platform/x86: asus-wireless: Fix format specifier

u64 should be printed with %llx instead of %x and cast to uint.

Signed-off-by: João Paulo Rechi Vita <jprvita@gmail.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
João Paulo Rechi Vita 2018-05-22 14:29:56 -07:00 committed by Andy Shevchenko
parent cf48bf9eee
commit cc5cceff28
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ static u64 asus_wireless_method(acpi_handle handle, const char *method,
acpi_handle_err(handle,
"Failed to eval method %s, param %#x (%d)\n",
method, param, s);
acpi_handle_debug(handle, "%s returned %#x\n", method, (uint) ret);
acpi_handle_debug(handle, "%s returned %#llx\n", method, ret);
return ret;
}