mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] sound/vxpocket: fix printk warning
@ 2006-06-08  4:22 Randy.Dunlap
  2006-06-08 10:23 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: Randy.Dunlap @ 2006-06-08  4:22 UTC (permalink / raw)
  To: lkml; +Cc: akpm, tiwai

From: Randy Dunlap <rdunlap@xenotime.net>

Fix printk format warning:
sound/pcmcia/vx/vxp_ops.c:205: warning: format '%x' expects type 'unsigned int', but argument 5 has type 'size_t'

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
---
 sound/pcmcia/vx/vxp_ops.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- linux-2617-rc6.orig/sound/pcmcia/vx/vxp_ops.c
+++ linux-2617-rc6/sound/pcmcia/vx/vxp_ops.c
@@ -202,7 +202,7 @@ static int vxp_load_xilinx_binary(struct
 	c |= (int)vx_inb(chip, RXM) << 8;
 	c |= vx_inb(chip, RXL);
 
-	snd_printdd(KERN_DEBUG "xilinx: dsp size received 0x%x, orig 0x%x\n", c, fw->size);
+	snd_printdd(KERN_DEBUG "xilinx: dsp size received 0x%x, orig 0x%Zx\n", c, fw->size);
 
 	vx_outb(chip, ICR, ICR_HF0);
 

---

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

end of thread, other threads:[~2006-06-08 10:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-08  4:22 [PATCH] sound/vxpocket: fix printk warning Randy.Dunlap
2006-06-08 10:23 ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®