Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56155
b: refs/heads/master
c: fdd4bb4
h: refs/heads/master
i:
  56153: 5a6caa0
  56151: 615d924
v: v3
  • Loading branch information
Takashi Iwai authored and Jaroslav Kysela committed May 11, 2007
1 parent bc70a47 commit 9eb761f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c4116ae717d6456884232642bae806125d39f1d3
refs/heads/master: fdd4bb49ec3f401379875990fcece611c623e32f
11 changes: 10 additions & 1 deletion trunk/sound/pci/ice1712/juli.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,16 @@ static struct snd_akm4xxx akm_juli_dac __devinitdata = {

static int __devinit juli_add_controls(struct snd_ice1712 *ice)
{
return snd_ice1712_akm4xxx_build_controls(ice);
int err;
err = snd_ice1712_akm4xxx_build_controls(ice);
if (err < 0)
return err;
/* only capture SPDIF over AK4114 */
err = snd_ak4114_build(ice->spec.juli.ak4114, NULL,
ice->pcm_pro->streams[SNDRV_PCM_STREAM_CAPTURE].substream);
if (err < 0)
return err;
return 0;
}

/*
Expand Down

0 comments on commit 9eb761f

Please sign in to comment.