Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
7df0eb42
Commit
7df0eb42
authored
Feb 04, 2009
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/asoc' into for-linus
parents
af7af690
64ca0404
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
sound/soc/atmel/atmel_ssc_dai.c
sound/soc/atmel/atmel_ssc_dai.c
+1
-1
sound/soc/atmel/atmel_ssc_dai.h
sound/soc/atmel/atmel_ssc_dai.h
+1
-1
sound/soc/codecs/wm8350.c
sound/soc/codecs/wm8350.c
+1
-1
sound/soc/codecs/wm8990.c
sound/soc/codecs/wm8990.c
+1
-2
sound/soc/omap/omap-pcm.c
sound/soc/omap/omap-pcm.c
+3
-2
No files found.
sound/soc/atmel/atmel_ssc_dai.c
View file @
7df0eb42
...
...
@@ -10,7 +10,7 @@
* Based on at91-ssc.c by
* Frank Mandarino <fmandarino@endrelia.com>
* Based on pxa2xx Platform drivers by
* Liam Girdwood <l
iam.girdwood@wolfsonmicro.com
>
* Liam Girdwood <l
rg@slimlogic.co.uk
>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
sound/soc/atmel/atmel_ssc_dai.h
View file @
7df0eb42
...
...
@@ -10,7 +10,7 @@
* Based on at91-ssc.c by
* Frank Mandarino <fmandarino@endrelia.com>
* Based on pxa2xx Platform drivers by
* Liam Girdwood <l
iam.girdwood@wolfsonmicro.com
>
* Liam Girdwood <l
rg@slimlogic.co.uk
>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
sound/soc/codecs/wm8350.c
View file @
7df0eb42
...
...
@@ -3,7 +3,7 @@
*
* Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
*
* Author: Liam Girdwood <l
g@opensource.wolfsonmicro.com
>
* Author: Liam Girdwood <l
rg@slimlogic.co.uk
>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
...
...
sound/soc/codecs/wm8990.c
View file @
7df0eb42
...
...
@@ -2,8 +2,7 @@
* wm8990.c -- WM8990 ALSA Soc Audio driver
*
* Copyright 2008 Wolfson Microelectronics PLC.
* Author: Liam Girdwood
* lg@opensource.wolfsonmicro.com or linux@wolfsonmicro.com
* Author: Liam Girdwood <lrg@slimlogic.co.uk>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
...
...
sound/soc/omap/omap-pcm.c
View file @
7df0eb42
...
...
@@ -175,9 +175,10 @@ static int omap_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
{
struct
snd_pcm_runtime
*
runtime
=
substream
->
runtime
;
struct
omap_runtime_data
*
prtd
=
runtime
->
private_data
;
unsigned
long
flags
;
int
ret
=
0
;
spin_lock_irq
(
&
prtd
->
lock
);
spin_lock_irq
save
(
&
prtd
->
lock
,
flags
);
switch
(
cmd
)
{
case
SNDRV_PCM_TRIGGER_START
:
case
SNDRV_PCM_TRIGGER_RESUME
:
...
...
@@ -195,7 +196,7 @@ static int omap_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
default:
ret
=
-
EINVAL
;
}
spin_unlock_irq
(
&
prtd
->
lock
);
spin_unlock_irq
restore
(
&
prtd
->
lock
,
flags
);
return
ret
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment