Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
cbe80def
Commit
cbe80def
authored
Nov 22, 2010
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-2.6.37' into for-2.6.38
parents
c7b64291
eba19fdd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
5 deletions
+7
-5
sound/soc/atmel/sam9g20_wm8731.c
sound/soc/atmel/sam9g20_wm8731.c
+2
-2
sound/soc/codecs/stac9766.c
sound/soc/codecs/stac9766.c
+1
-0
sound/soc/codecs/wm8523.c
sound/soc/codecs/wm8523.c
+0
-1
sound/soc/codecs/wm8994.c
sound/soc/codecs/wm8994.c
+2
-0
sound/soc/s3c24xx/smdk_spdif.c
sound/soc/s3c24xx/smdk_spdif.c
+2
-2
No files found.
sound/soc/atmel/sam9g20_wm8731.c
View file @
cbe80def
...
@@ -222,9 +222,9 @@ static int __init at91sam9g20ek_init(void)
...
@@ -222,9 +222,9 @@ static int __init at91sam9g20ek_init(void)
}
}
pllb
=
clk_get
(
NULL
,
"pllb"
);
pllb
=
clk_get
(
NULL
,
"pllb"
);
if
(
IS_ERR
(
mclk
))
{
if
(
IS_ERR
(
pllb
))
{
printk
(
KERN_ERR
"ASoC: Failed to get PLLB
\n
"
);
printk
(
KERN_ERR
"ASoC: Failed to get PLLB
\n
"
);
ret
=
PTR_ERR
(
mclk
);
ret
=
PTR_ERR
(
pllb
);
goto
err_mclk
;
goto
err_mclk
;
}
}
ret
=
clk_set_parent
(
mclk
,
pllb
);
ret
=
clk_set_parent
(
mclk
,
pllb
);
...
...
sound/soc/codecs/stac9766.c
View file @
cbe80def
...
@@ -383,6 +383,7 @@ static struct snd_soc_codec_driver soc_codec_dev_stac9766 = {
...
@@ -383,6 +383,7 @@ static struct snd_soc_codec_driver soc_codec_dev_stac9766 = {
.
reg_cache_size
=
sizeof
(
stac9766_reg
),
.
reg_cache_size
=
sizeof
(
stac9766_reg
),
.
reg_word_size
=
sizeof
(
u16
),
.
reg_word_size
=
sizeof
(
u16
),
.
reg_cache_step
=
2
,
.
reg_cache_step
=
2
,
.
reg_cache_default
=
stac9766_reg
,
};
};
static
__devinit
int
stac9766_probe
(
struct
platform_device
*
pdev
)
static
__devinit
int
stac9766_probe
(
struct
platform_device
*
pdev
)
...
...
sound/soc/codecs/wm8523.c
View file @
cbe80def
...
@@ -146,7 +146,6 @@ static int wm8523_startup(struct snd_pcm_substream *substream,
...
@@ -146,7 +146,6 @@ static int wm8523_startup(struct snd_pcm_substream *substream,
return
-
EINVAL
;
return
-
EINVAL
;
}
}
return
0
;
snd_pcm_hw_constraint_list
(
substream
->
runtime
,
0
,
snd_pcm_hw_constraint_list
(
substream
->
runtime
,
0
,
SNDRV_PCM_HW_PARAM_RATE
,
SNDRV_PCM_HW_PARAM_RATE
,
&
wm8523
->
rate_constraint
);
&
wm8523
->
rate_constraint
);
...
...
sound/soc/codecs/wm8994.c
View file @
cbe80def
...
@@ -2515,6 +2515,8 @@ static struct snd_soc_codec_driver soc_codec_dev_wm8994 = {
...
@@ -2515,6 +2515,8 @@ static struct snd_soc_codec_driver soc_codec_dev_wm8994 = {
.
resume
=
wm8994_resume
,
.
resume
=
wm8994_resume
,
.
read
=
wm8994_read
,
.
read
=
wm8994_read
,
.
write
=
wm8994_write
,
.
write
=
wm8994_write
,
.
readable_register
=
wm8994_readable
,
.
volatile_register
=
wm8994_volatile
,
.
set_bias_level
=
wm8994_set_bias_level
,
.
set_bias_level
=
wm8994_set_bias_level
,
};
};
...
...
sound/soc/s3c24xx/smdk_spdif.c
View file @
cbe80def
...
@@ -38,7 +38,7 @@ static int set_audio_clock_heirachy(struct platform_device *pdev)
...
@@ -38,7 +38,7 @@ static int set_audio_clock_heirachy(struct platform_device *pdev)
}
}
mout_epll
=
clk_get
(
NULL
,
"mout_epll"
);
mout_epll
=
clk_get
(
NULL
,
"mout_epll"
);
if
(
IS_ERR
(
f
out_epll
))
{
if
(
IS_ERR
(
m
out_epll
))
{
printk
(
KERN_WARNING
"%s: Cannot find mout_epll.
\n
"
,
printk
(
KERN_WARNING
"%s: Cannot find mout_epll.
\n
"
,
__func__
);
__func__
);
ret
=
-
EINVAL
;
ret
=
-
EINVAL
;
...
@@ -54,7 +54,7 @@ static int set_audio_clock_heirachy(struct platform_device *pdev)
...
@@ -54,7 +54,7 @@ static int set_audio_clock_heirachy(struct platform_device *pdev)
}
}
sclk_spdif
=
clk_get
(
NULL
,
"sclk_spdif"
);
sclk_spdif
=
clk_get
(
NULL
,
"sclk_spdif"
);
if
(
IS_ERR
(
fout_epll
))
{
if
(
IS_ERR
(
sclk_spdif
))
{
printk
(
KERN_WARNING
"%s: Cannot find sclk_spdif.
\n
"
,
printk
(
KERN_WARNING
"%s: Cannot find sclk_spdif.
\n
"
,
__func__
);
__func__
);
ret
=
-
EINVAL
;
ret
=
-
EINVAL
;
...
...
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