Skip to content

Commit

Permalink
[ALSA] hda-intel - Fix a compile error with CONFIG_SND_DEBUG_DETECT=y
Browse files Browse the repository at this point in the history
Forgot to get rid of the obsolete fragsize field from a debug print.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
tiwai committed Apr 24, 2008
1 parent ef2cd2c commit 21c7b08
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions sound/pci/hda/hda_intel.c
Original file line number Diff line number Diff line change
Expand Up @@ -1308,9 +1308,8 @@ static int azx_pcm_prepare(struct snd_pcm_substream *substream)
return -EINVAL;
}

snd_printdd("azx_pcm_prepare: bufsize=0x%x, fragsize=0x%x, "
"format=0x%x\n",
azx_dev->bufsize, azx_dev->fragsize, azx_dev->format_val);
snd_printdd("azx_pcm_prepare: bufsize=0x%x, format=0x%x\n",
azx_dev->bufsize, azx_dev->format_val);
if (azx_setup_periods(substream, azx_dev) < 0)
return -EINVAL;
azx_setup_controller(chip, azx_dev);
Expand Down

0 comments on commit 21c7b08

Please sign in to comment.