Commit 5371fc0e authored by Fabio Estevam's avatar Fabio Estevam Committed by Takashi Iwai
Browse files

ALSA: ac97: ac97_patch: Simplify patch_vt1613_specific()



We can simplify the code by returning patch_build_controls() directly.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent d6482288
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -3360,14 +3360,8 @@ AC97_SINGLE("DC Offset removal", 0x5a, 10, 1, 0),

static int patch_vt1613_specific(struct snd_ac97 *ac97)
{
	int err;

	err = patch_build_controls(ac97, &snd_ac97_controls_vt1613[0],
	return patch_build_controls(ac97, &snd_ac97_controls_vt1613[0],
				    ARRAY_SIZE(snd_ac97_controls_vt1613));
	if (err)
		return err;

	return 0;
};

static const struct snd_ac97_build_ops patch_vt1613_ops = {