Skip to content

Commit

Permalink
ALSA: pcm - Fix warnings in debug loggings
Browse files Browse the repository at this point in the history
Add proper cast.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Iwai committed Jul 23, 2009
1 parent cedb811 commit 8935064
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions sound/core/pcm_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -238,12 +238,12 @@ static int snd_pcm_update_hw_ptr_interrupt(struct snd_pcm_substream *substream)
pcm_debug_name(substream, name, sizeof(name));
snd_printd("period_update: %s: pos=0x%x/0x%x/0x%x, "
"hwptr=0x%lx, hw_base=0x%lx, hw_intr=0x%lx\n",
name, pos,
(int)runtime->period_size,
(int)runtime->buffer_size,
(long)old_hw_ptr,
(long)runtime->hw_ptr_base,
(long)runtime->hw_ptr_interrupt);
name, (unsigned int)pos,
(unsigned int)runtime->period_size,
(unsigned int)runtime->buffer_size,
(unsigned long)old_hw_ptr,
(unsigned long)runtime->hw_ptr_base,
(unsigned long)runtime->hw_ptr_interrupt);
}
hw_base = runtime->hw_ptr_base;
new_hw_ptr = hw_base + pos;
Expand Down Expand Up @@ -370,12 +370,12 @@ int snd_pcm_update_hw_ptr(struct snd_pcm_substream *substream)
pcm_debug_name(substream, name, sizeof(name));
snd_printd("hw_update: %s: pos=0x%x/0x%x/0x%x, "
"hwptr=0x%lx, hw_base=0x%lx, hw_intr=0x%lx\n",
name, pos,
(int)runtime->period_size,
(int)runtime->buffer_size,
(long)old_hw_ptr,
(long)runtime->hw_ptr_base,
(long)runtime->hw_ptr_interrupt);
name, (unsigned int)pos,
(unsigned int)runtime->period_size,
(unsigned int)runtime->buffer_size,
(unsigned long)old_hw_ptr,
(unsigned long)runtime->hw_ptr_base,
(unsigned long)runtime->hw_ptr_interrupt);
}

hw_base = runtime->hw_ptr_base;
Expand Down

0 comments on commit 8935064

Please sign in to comment.