* Re: [alsa-devel] [PATCH -next] soc: fix printk format in soc-dapm.c
2012-04-17 1:01 ` [PATCH -next] soc: fix printk format in soc-dapm.c Randy Dunlap
@ 2012-04-16 22:52 ` Fabio Estevam
0 siblings, 0 replies; 2+ messages in thread
From: Fabio Estevam @ 2012-04-16 22:52 UTC (permalink / raw)
To: Randy Dunlap
Cc: Stephen Rothwell, alsa-devel, Mark Brown, LKML, linux-next,
Andrew Morton, Liam Girdwood
On Mon, Apr 16, 2012 at 10:01 PM, Randy Dunlap <rdunlap@xenotime.net> wrote:
> From: Randy Dunlap <rdunlap@xenotime.net>
>
> Fix printk format warning for 'formats':
>
> sound/soc/soc-dapm.c:2913:5: warning: format '%lx' expects type 'long unsigned int', but argument 3 has type 'u64'
I have sent a fix for this earlier today and Mark has already applied it.
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH -next] soc: fix printk format in soc-dapm.c
[not found] <20120416161121.261ba4e7e38989173accfb16@canb.auug.org.au>
@ 2012-04-17 1:01 ` Randy Dunlap
2012-04-16 22:52 ` [alsa-devel] " Fabio Estevam
0 siblings, 1 reply; 2+ messages in thread
From: Randy Dunlap @ 2012-04-17 1:01 UTC (permalink / raw)
To: Stephen Rothwell
Cc: alsa-devel, Mark Brown, LKML, linux-next, Andrew Morton,
Liam Girdwood
From: Randy Dunlap <rdunlap@xenotime.net>
Fix printk format warning for 'formats':
sound/soc/soc-dapm.c:2913:5: warning: format '%lx' expects type 'long unsigned int', but argument 3 has type 'u64'
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Cc: Liam Girdwood <lrg@ti.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: alsa-devel@alsa-project.org
---
sound/soc/soc-dapm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- linux-next-20120416.orig/sound/soc/soc-dapm.c
+++ linux-next-20120416/sound/soc/soc-dapm.c
@@ -2909,7 +2909,7 @@ static int snd_soc_dai_link_event(struct
if (config->formats) {
fmt = ffs(config->formats) - 1;
} else {
- dev_warn(w->dapm->dev, "Invalid format %lx specified\n",
+ dev_warn(w->dapm->dev, "Invalid format %llx specified\n",
config->formats);
fmt = 0;
}
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-04-16 22:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20120416161121.261ba4e7e38989173accfb16@canb.auug.org.au>
2012-04-17 1:01 ` [PATCH -next] soc: fix printk format in soc-dapm.c Randy Dunlap
2012-04-16 22:52 ` [alsa-devel] " Fabio Estevam
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).