Skip to content

Commit

Permalink
[ALSA] sound/vxpocket: fix printk warning
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
rddunlap authored and Jaroslav Kysela committed Jun 22, 2006
1 parent 3758d4e commit 3f3488b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/pcmcia/vx/vxp_ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ static int vxp_load_xilinx_binary(struct vx_core *_chip, const struct firmware *
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);

Expand Down

0 comments on commit 3f3488b

Please sign in to comment.