linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ia64: fix format string for ia64-acpi-cpu-freq
@ 2021-03-13 10:42 Sergei Trofimovich
  2021-03-15  3:19 ` Viresh Kumar
  0 siblings, 1 reply; 3+ messages in thread
From: Sergei Trofimovich @ 2021-03-13 10:42 UTC (permalink / raw)
  To: linux-pm, linux-kernel
  Cc: Sergei Trofimovich, Rafael J. Wysocki, Viresh Kumar

Fix warning with %lx / s64 mismatch:

  CC [M]  drivers/cpufreq/ia64-acpi-cpufreq.o
    drivers/cpufreq/ia64-acpi-cpufreq.c: In function 'processor_get_pstate':
      warning: format '%lx' expects argument of type 'long unsigned int',
      but argument 3 has type 's64' {aka 'long long int'} [-Wformat=]

CC: "Rafael J. Wysocki" <rjw@rjwysocki.net>
CC: Viresh Kumar <viresh.kumar@linaro.org>
CC: linux-pm@vger.kernel.org
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
---
 drivers/cpufreq/ia64-acpi-cpufreq.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/cpufreq/ia64-acpi-cpufreq.c b/drivers/cpufreq/ia64-acpi-cpufreq.c
index 2efe7189ccc4..c6bdc455517f 100644
--- a/drivers/cpufreq/ia64-acpi-cpufreq.c
+++ b/drivers/cpufreq/ia64-acpi-cpufreq.c
@@ -54,7 +54,7 @@ processor_set_pstate (
 	retval = ia64_pal_set_pstate((u64)value);
 
 	if (retval) {
-		pr_debug("Failed to set freq to 0x%x, with error 0x%lx\n",
+		pr_debug("Failed to set freq to 0x%x, with error 0x%llx\n",
 		        value, retval);
 		return -ENODEV;
 	}
@@ -77,7 +77,7 @@ processor_get_pstate (
 
 	if (retval)
 		pr_debug("Failed to get current freq with "
-			"error 0x%lx, idx 0x%x\n", retval, *value);
+			"error 0x%llx, idx 0x%x\n", retval, *value);
 
 	return (int)retval;
 }
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ia64: fix format string for ia64-acpi-cpu-freq
  2021-03-13 10:42 [PATCH] ia64: fix format string for ia64-acpi-cpu-freq Sergei Trofimovich
@ 2021-03-15  3:19 ` Viresh Kumar
  2021-03-19 16:27   ` Rafael J. Wysocki
  0 siblings, 1 reply; 3+ messages in thread
From: Viresh Kumar @ 2021-03-15  3:19 UTC (permalink / raw)
  To: Sergei Trofimovich; +Cc: linux-pm, linux-kernel, Rafael J. Wysocki

On 13-03-21, 10:42, Sergei Trofimovich wrote:
> Fix warning with %lx / s64 mismatch:
> 
>   CC [M]  drivers/cpufreq/ia64-acpi-cpufreq.o
>     drivers/cpufreq/ia64-acpi-cpufreq.c: In function 'processor_get_pstate':
>       warning: format '%lx' expects argument of type 'long unsigned int',
>       but argument 3 has type 's64' {aka 'long long int'} [-Wformat=]
> 
> CC: "Rafael J. Wysocki" <rjw@rjwysocki.net>
> CC: Viresh Kumar <viresh.kumar@linaro.org>
> CC: linux-pm@vger.kernel.org
> Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
> ---
>  drivers/cpufreq/ia64-acpi-cpufreq.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/cpufreq/ia64-acpi-cpufreq.c b/drivers/cpufreq/ia64-acpi-cpufreq.c
> index 2efe7189ccc4..c6bdc455517f 100644
> --- a/drivers/cpufreq/ia64-acpi-cpufreq.c
> +++ b/drivers/cpufreq/ia64-acpi-cpufreq.c
> @@ -54,7 +54,7 @@ processor_set_pstate (
>  	retval = ia64_pal_set_pstate((u64)value);
>  
>  	if (retval) {
> -		pr_debug("Failed to set freq to 0x%x, with error 0x%lx\n",
> +		pr_debug("Failed to set freq to 0x%x, with error 0x%llx\n",
>  		        value, retval);
>  		return -ENODEV;
>  	}
> @@ -77,7 +77,7 @@ processor_get_pstate (
>  
>  	if (retval)
>  		pr_debug("Failed to get current freq with "
> -			"error 0x%lx, idx 0x%x\n", retval, *value);
> +			"error 0x%llx, idx 0x%x\n", retval, *value);
>  
>  	return (int)retval;
>  }

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

-- 
viresh

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ia64: fix format string for ia64-acpi-cpu-freq
  2021-03-15  3:19 ` Viresh Kumar
@ 2021-03-19 16:27   ` Rafael J. Wysocki
  0 siblings, 0 replies; 3+ messages in thread
From: Rafael J. Wysocki @ 2021-03-19 16:27 UTC (permalink / raw)
  To: Viresh Kumar, Sergei Trofimovich
  Cc: Linux PM, Linux Kernel Mailing List, Rafael J. Wysocki

On Mon, Mar 15, 2021 at 4:19 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:
>
> On 13-03-21, 10:42, Sergei Trofimovich wrote:
> > Fix warning with %lx / s64 mismatch:
> >
> >   CC [M]  drivers/cpufreq/ia64-acpi-cpufreq.o
> >     drivers/cpufreq/ia64-acpi-cpufreq.c: In function 'processor_get_pstate':
> >       warning: format '%lx' expects argument of type 'long unsigned int',
> >       but argument 3 has type 's64' {aka 'long long int'} [-Wformat=]
> >
> > CC: "Rafael J. Wysocki" <rjw@rjwysocki.net>
> > CC: Viresh Kumar <viresh.kumar@linaro.org>
> > CC: linux-pm@vger.kernel.org
> > Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
> > ---
> >  drivers/cpufreq/ia64-acpi-cpufreq.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/cpufreq/ia64-acpi-cpufreq.c b/drivers/cpufreq/ia64-acpi-cpufreq.c
> > index 2efe7189ccc4..c6bdc455517f 100644
> > --- a/drivers/cpufreq/ia64-acpi-cpufreq.c
> > +++ b/drivers/cpufreq/ia64-acpi-cpufreq.c
> > @@ -54,7 +54,7 @@ processor_set_pstate (
> >       retval = ia64_pal_set_pstate((u64)value);
> >
> >       if (retval) {
> > -             pr_debug("Failed to set freq to 0x%x, with error 0x%lx\n",
> > +             pr_debug("Failed to set freq to 0x%x, with error 0x%llx\n",
> >                       value, retval);
> >               return -ENODEV;
> >       }
> > @@ -77,7 +77,7 @@ processor_get_pstate (
> >
> >       if (retval)
> >               pr_debug("Failed to get current freq with "
> > -                     "error 0x%lx, idx 0x%x\n", retval, *value);
> > +                     "error 0x%llx, idx 0x%x\n", retval, *value);
> >
> >       return (int)retval;
> >  }
>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

Applied as 5.13 material, thanks!

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-19 16:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-13 10:42 [PATCH] ia64: fix format string for ia64-acpi-cpu-freq Sergei Trofimovich
2021-03-15  3:19 ` Viresh Kumar
2021-03-19 16:27   ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).