Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 21c7b081 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

[ALSA] hda-intel - Fix a compile error with CONFIG_SND_DEBUG_DETECT=y



Forgot to get rid of the obsolete fragsize field from a debug print.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent ef2cd2cc
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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);