diff mbox

platform/x86: asus-wireless: Fix format specifier

Message ID 20180522212956.5433-1-jprvita@endlessm.com (mailing list archive)
State Accepted, archived
Delegated to: Andy Shevchenko
Headers show

Commit Message

João Paulo Rechi Vita May 22, 2018, 9:29 p.m. UTC
From: João Paulo Rechi Vita <jprvita@gmail.com>

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

Signed-off-by: João Paulo Rechi Vita <jprvita@gmail.com>
---
 drivers/platform/x86/asus-wireless.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Andy Shevchenko May 31, 2018, 10:35 a.m. UTC | #1
On Wed, May 23, 2018 at 12:29 AM, João Paulo Rechi Vita
<jprvita@gmail.com> wrote:
> From: João Paulo Rechi Vita <jprvita@gmail.com>
>
> u64 should be printed with %llx instead of %x and cast to uint.
>

Pushed to my review and testing queue, thanks!

> Signed-off-by: João Paulo Rechi Vita <jprvita@gmail.com>
> ---
>  drivers/platform/x86/asus-wireless.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/platform/x86/asus-wireless.c b/drivers/platform/x86/asus-wireless.c
> index f086469ea740..6afd011de9e5 100644
> --- a/drivers/platform/x86/asus-wireless.c
> +++ b/drivers/platform/x86/asus-wireless.c
> @@ -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;
>  }
>
> --
> 2.17.0
>
diff mbox

Patch

diff --git a/drivers/platform/x86/asus-wireless.c b/drivers/platform/x86/asus-wireless.c
index f086469ea740..6afd011de9e5 100644
--- a/drivers/platform/x86/asus-wireless.c
+++ b/drivers/platform/x86/asus-wireless.c
@@ -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;
 }