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:
parent
cf48bf9eee
commit
cc5cceff28
|
@ -72,7 +72,7 @@ static u64 asus_wireless_method(acpi_handle handle, const char *method,
|
||||||
acpi_handle_err(handle,
|
acpi_handle_err(handle,
|
||||||
"Failed to eval method %s, param %#x (%d)\n",
|
"Failed to eval method %s, param %#x (%d)\n",
|
||||||
method, param, s);
|
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;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue