Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 222911
b: refs/heads/master
c: af745bd
h: refs/heads/master
i:
  222909: d5b9aaf
  222907: 9b062ab
  222903: 8e3d450
  222895: f0e3015
  222879: aafb337
  222847: 61c88f6
v: v3
  • Loading branch information
Takashi Iwai committed Dec 2, 2010
1 parent a50049b commit 57de753
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 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: 0ffd22b694b739b3dc3f80bc93726b581e8e8af5
refs/heads/master: af745bd724e304cc94a88a2fb43d53baffbd63a5
2 changes: 1 addition & 1 deletion trunk/sound/soc/codecs/wm8731.c
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ static int wm8731_probe(struct snd_soc_codec *codec)
snd_soc_update_bits(codec, WM8731_RINVOL, 0x100, 0);

/* Disable bypass path by default */
snd_soc_update_bits(codec, WM8731_APANA, 0x4, 0);
snd_soc_update_bits(codec, WM8731_APANA, 0x8, 0);

snd_soc_add_controls(codec, wm8731_snd_controls,
ARRAY_SIZE(wm8731_snd_controls));
Expand Down
9 changes: 5 additions & 4 deletions trunk/sound/soc/nuc900/nuc900-pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ static int nuc900_dma_hw_params(struct snd_pcm_substream *substream,
unsigned long flags;
int ret = 0;

spin_lock_irqsave(&nuc900_audio->lock, flags);

ret = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params));
if (ret < 0)
return ret;

spin_lock_irqsave(&nuc900_audio->lock, flags);

nuc900_audio->substream = substream;
nuc900_audio->dma_addr[substream->stream] = runtime->dma_addr;
nuc900_audio->buffersize[substream->stream] =
Expand Down Expand Up @@ -169,6 +169,7 @@ static int nuc900_dma_prepare(struct snd_pcm_substream *substream)
struct snd_pcm_runtime *runtime = substream->runtime;
struct nuc900_audio *nuc900_audio = runtime->private_data;
unsigned long flags, val;
int ret = 0;

spin_lock_irqsave(&nuc900_audio->lock, flags);

Expand Down Expand Up @@ -197,10 +198,10 @@ static int nuc900_dma_prepare(struct snd_pcm_substream *substream)
AUDIO_WRITE(nuc900_audio->mmio + ACTL_RESET, val);
break;
default:
return -EINVAL;
ret = -EINVAL;
}
spin_unlock_irqrestore(&nuc900_audio->lock, flags);
return 0;
return ret;
}

static int nuc900_dma_trigger(struct snd_pcm_substream *substream, int cmd)
Expand Down
2 changes: 1 addition & 1 deletion trunk/sound/soc/s6000/s6000-i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ static struct snd_soc_dai_driver s6000_i2s_dai = {
.rate_max = 1562500,
},
.ops = &s6000_i2s_dai_ops,
}
};

static int __devinit s6000_i2s_probe(struct platform_device *pdev)
{
Expand Down
2 changes: 1 addition & 1 deletion trunk/sound/soc/s6000/s6000-pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ static int s6000_pcm_new(struct snd_card *card,
}

res = request_irq(params->irq, s6000_pcm_irq, IRQF_SHARED,
s6000_soc_platform.name, pcm);
"s6000-audio", pcm);
if (res) {
printk(KERN_ERR "s6000-pcm couldn't get IRQ\n");
return res;
Expand Down
2 changes: 1 addition & 1 deletion trunk/sound/soc/s6000/s6105-ipcam.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ static int s6105_aic3x_init(struct snd_soc_pcm_runtime *rtd)

snd_soc_dapm_sync(codec);

snd_ctl_add(codec->snd_card, snd_ctl_new1(&audio_out_mux, codec));
snd_ctl_add(codec->card->snd_card, snd_ctl_new1(&audio_out_mux, codec));

return 0;
}
Expand Down

0 comments on commit 57de753

Please sign in to comment.