Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}