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
a17accb7
Commit
a17accb7
authored
Dec 18, 2009
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-2.6.33' into for-2.6.34
parents
56927eb0
48c03ce7
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
26 deletions
+10
-26
sound/soc/codecs/ak4642.c
sound/soc/codecs/ak4642.c
+1
-1
sound/soc/codecs/stac9766.c
sound/soc/codecs/stac9766.c
+1
-17
sound/soc/codecs/wm8900.c
sound/soc/codecs/wm8900.c
+1
-1
sound/soc/codecs/wm8974.c
sound/soc/codecs/wm8974.c
+1
-1
sound/soc/imx/mx1_mx2-pcm.c
sound/soc/imx/mx1_mx2-pcm.c
+3
-3
sound/soc/omap/Makefile
sound/soc/omap/Makefile
+3
-3
No files found.
sound/soc/codecs/ak4642.c
View file @
a17accb7
...
...
@@ -470,7 +470,7 @@ EXPORT_SYMBOL_GPL(soc_codec_dev_ak4642);
static
int
__init
ak4642_modinit
(
void
)
{
int
ret
;
int
ret
=
0
;
#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
ret
=
i2c_add_driver
(
&
ak4642_i2c_driver
);
#endif
...
...
sound/soc/codecs/stac9766.c
View file @
a17accb7
...
...
@@ -191,6 +191,7 @@ static int ac97_analog_prepare(struct snd_pcm_substream *substream,
vra
=
stac9766_ac97_read
(
codec
,
AC97_EXTENDED_STATUS
);
vra
|=
0x1
;
/* enable variable rate audio */
vra
&=
~
0x4
;
/* disable SPDIF output */
stac9766_ac97_write
(
codec
,
AC97_EXTENDED_STATUS
,
vra
);
...
...
@@ -221,22 +222,6 @@ static int ac97_digital_prepare(struct snd_pcm_substream *substream,
return
stac9766_ac97_write
(
codec
,
reg
,
runtime
->
rate
);
}
static
int
ac97_digital_trigger
(
struct
snd_pcm_substream
*
substream
,
int
cmd
,
struct
snd_soc_dai
*
dai
)
{
struct
snd_soc_codec
*
codec
=
dai
->
codec
;
unsigned
short
vra
;
switch
(
cmd
)
{
case
SNDRV_PCM_TRIGGER_STOP
:
vra
=
stac9766_ac97_read
(
codec
,
AC97_EXTENDED_STATUS
);
vra
&=
!
0x04
;
stac9766_ac97_write
(
codec
,
AC97_EXTENDED_STATUS
,
vra
);
break
;
}
return
0
;
}
static
int
stac9766_set_bias_level
(
struct
snd_soc_codec
*
codec
,
enum
snd_soc_bias_level
level
)
{
...
...
@@ -315,7 +300,6 @@ static struct snd_soc_dai_ops stac9766_dai_ops_analog = {
static
struct
snd_soc_dai_ops
stac9766_dai_ops_digital
=
{
.
prepare
=
ac97_digital_prepare
,
.
trigger
=
ac97_digital_trigger
,
};
struct
snd_soc_dai
stac9766_dai
[]
=
{
...
...
sound/soc/codecs/wm8900.c
View file @
a17accb7
...
...
@@ -199,7 +199,7 @@ static void wm8900_reset(struct snd_soc_codec *codec)
snd_soc_write
(
codec
,
WM8900_REG_RESET
,
0
);
memcpy
(
codec
->
reg_cache
,
wm8900_reg_defaults
,
sizeof
(
codec
->
reg_cache
));
sizeof
(
wm8900_reg_defaults
));
}
static
int
wm8900_hp_event
(
struct
snd_soc_dapm_widget
*
w
,
...
...
sound/soc/codecs/wm8974.c
View file @
a17accb7
...
...
@@ -47,7 +47,7 @@ static const u16 wm8974_reg[WM8974_CACHEREGNUM] = {
};
#define WM8974_POWER1_BIASEN 0x08
#define WM8974_POWER1_BUFIOEN 0x
10
#define WM8974_POWER1_BUFIOEN 0x
04
struct
wm8974_priv
{
struct
snd_soc_codec
codec
;
...
...
sound/soc/imx/mx1_mx2-pcm.c
View file @
a17accb7
...
...
@@ -322,12 +322,12 @@ static int mx1_mx2_pcm_open(struct snd_pcm_substream *substream)
pr_debug
(
"%s: Requesting dma channel (%s)
\n
"
,
__func__
,
prtd
->
dma_params
->
name
);
prtd
->
dma_ch
=
imx_dma_request_by_prio
(
prtd
->
dma_params
->
name
,
DMA_PRIO_HIGH
);
if
(
prtd
->
dma_ch
<
0
)
{
ret
=
imx_dma_request_by_prio
(
prtd
->
dma_params
->
name
,
DMA_PRIO_HIGH
);
if
(
ret
<
0
)
{
printk
(
KERN_ERR
"Error %d requesting dma channel
\n
"
,
ret
);
return
ret
;
}
prtd
->
dma_ch
=
ret
;
imx_dma_config_burstlen
(
prtd
->
dma_ch
,
prtd
->
dma_params
->
watermark_level
);
...
...
sound/soc/omap/Makefile
View file @
a17accb7
...
...
@@ -23,9 +23,9 @@ obj-$(CONFIG_SND_OMAP_SOC_N810) += snd-soc-n810.o
obj-$(CONFIG_SND_OMAP_SOC_AMS_DELTA)
+=
snd-soc-ams-delta.o
obj-$(CONFIG_SND_OMAP_SOC_OSK5912)
+=
snd-soc-osk5912.o
obj-$(CONFIG_SND_OMAP_SOC_OVERO)
+=
snd-soc-overo.o
obj-$(CONFIG_
MACH
_OMAP2EVM)
+=
snd-soc-omap2evm.o
obj-$(CONFIG_
MACH
_OMAP3EVM)
+=
snd-soc-omap3evm.o
obj-$(CONFIG_
MACH
_OMAP3517EVM)
+=
snd-soc-am3517evm.o
obj-$(CONFIG_
SND_OMAP_SOC
_OMAP2EVM)
+=
snd-soc-omap2evm.o
obj-$(CONFIG_
SND_OMAP_SOC
_OMAP3EVM)
+=
snd-soc-omap3evm.o
obj-$(CONFIG_
SND_OMAP_SOC
_OMAP3517EVM)
+=
snd-soc-am3517evm.o
obj-$(CONFIG_SND_OMAP_SOC_SDP3430)
+=
snd-soc-sdp3430.o
obj-$(CONFIG_SND_OMAP_SOC_OMAP3_PANDORA)
+=
snd-soc-omap3pandora.o
obj-$(CONFIG_SND_OMAP_SOC_OMAP3_BEAGLE)
+=
snd-soc-omap3beagle.o
...
...
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