diff options
author | Andrew Morton <akpm@osdl.org> | 2006-01-20 14:07:47 +0100 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-22 16:25:03 +0100 |
commit | 20cd22620ad3a8a57a942fa1f301d47a1e15d67e (patch) | |
tree | d06fc2c045c6a3a5b1656c9dbf09f6b74e35f149 /sound/pci/pcxhr | |
parent | e2eba3e7d911b26525c17f0b7e2bc45aad8e2629 (diff) | |
download | op-kernel-dev-20cd22620ad3a8a57a942fa1f301d47a1e15d67e.zip op-kernel-dev-20cd22620ad3a8a57a942fa1f301d47a1e15d67e.tar.gz |
[ALSA] pcxhr - Fix printk warning
Modules: Digigram PCXHR driver
sound/pci/pcxhr/pcxhr.c: In function 'pcxhr_update_r_buffer':
sound/pci/pcxhr/pcxhr.c:460: warning: unsigned int format, different type arg (arg 7)
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/pcxhr')
-rw-r--r-- | sound/pci/pcxhr/pcxhr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/pcxhr/pcxhr.c b/sound/pci/pcxhr/pcxhr.c index 57fe953..b2cba75 100644 --- a/sound/pci/pcxhr/pcxhr.c +++ b/sound/pci/pcxhr/pcxhr.c @@ -454,7 +454,7 @@ static int pcxhr_update_r_buffer(struct pcxhr_stream *stream) is_capture = (subs->stream == SNDRV_PCM_STREAM_CAPTURE); stream_num = is_capture ? 0 : subs->number; - snd_printdd("pcxhr_update_r_buffer(pcm%c%d) : addr(%p) bytes(%x) subs(%d)\n", + snd_printdd("pcxhr_update_r_buffer(pcm%c%d) : addr(%p) bytes(%zx) subs(%d)\n", is_capture ? 'c' : 'p', chip->chip_idx, (void*)subs->runtime->dma_addr, subs->runtime->dma_bytes, subs->number); |