Commit cc5cceff authored by João Paulo Rechi Vita's avatar João Paulo Rechi Vita Committed by Andy Shevchenko

platform/x86: asus-wireless: Fix format specifier

u64 should be printed with %llx instead of %x and cast to uint.
Signed-off-by: default avatarJoão Paulo Rechi Vita <jprvita@gmail.com>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent cf48bf9e
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment