Skip to content

Commit

Permalink
[ALSA] soc - poodle - Fix checkpatch warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Mark Brown authored and Takashi Iwai committed Apr 24, 2008
1 parent 1bfcd36 commit 29e36e4
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions sound/soc/pxa/poodle.c
Original file line number Diff line number Diff line change
Expand Up @@ -257,21 +257,19 @@ static int poodle_wm8731_init(struct snd_soc_codec *codec)
/* Add poodle specific controls */
for (i = 0; i < ARRAY_SIZE(wm8731_poodle_controls); i++) {
err = snd_ctl_add(codec->card,
snd_soc_cnew(&wm8731_poodle_controls[i],codec, NULL));
snd_soc_cnew(&wm8731_poodle_controls[i], codec, NULL));
if (err < 0)
return err;
}

/* Add poodle specific widgets */
for (i = 0; i < ARRAY_SIZE(wm8731_dapm_widgets); i++) {
for (i = 0; i < ARRAY_SIZE(wm8731_dapm_widgets); i++)
snd_soc_dapm_new_control(codec, &wm8731_dapm_widgets[i]);
}

/* Set up poodle specific audio path audio_map */
for (i = 0; audio_map[i][0] != NULL; i++) {
for (i = 0; audio_map[i][0] != NULL; i++)
snd_soc_dapm_connect_input(codec, audio_map[i][0],
audio_map[i][1], audio_map[i][2]);
}

snd_soc_dapm_sync_endpoints(codec);
return 0;
Expand Down

0 comments on commit 29e36e4

Please sign in to comment.