[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1494298.av10nJMuYA@vostro.rjw.lan>
Date:	Wed, 06 Aug 2014 22:35:46 +0200
From:	"Rafael J. Wysocki" <rjw@...ysocki.net>
To:	Hans Wennborg <hans@...shq.net>
Cc:	linux-pm@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 02/15] cpufreq: fix decimal printf format specifiers prefixed with 0x
On Tuesday, August 05, 2014 09:41:48 PM Hans Wennborg wrote:
> The prefix suggests the number should be printed in hex, so use
> the %x specifier to do that.
> 
> Found by using regex suggested by Joe Perches.
> 
> Signed-off-by: Hans Wennborg <hans@...shq.net>
This triggers a build warning related to the formats.  Care to fix up?
> ---
>  drivers/cpufreq/speedstep-smi.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/cpufreq/speedstep-smi.c b/drivers/cpufreq/speedstep-smi.c
> index 8635eec..fda9beb 100644
> --- a/drivers/cpufreq/speedstep-smi.c
> +++ b/drivers/cpufreq/speedstep-smi.c
> @@ -324,8 +324,8 @@ static int __init speedstep_init(void)
>  		return -ENODEV;
>  	}
>  
> -	pr_debug("signature:0x%.8ulx, command:0x%.8ulx, "
> -		"event:0x%.8ulx, perf_level:0x%.8ulx.\n",
> +	pr_debug("signature:0x%.8lx, command:0x%.8lx, "
> +		"event:0x%.8lx, perf_level:0x%.8lx.\n",
>  		ist_info.signature, ist_info.command,
>  		ist_info.event, ist_info.perf_level);
>  
> 
-- 
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/
Powered by blists - more mailing lists