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
Kirill Smelkov
linux
Commits
aac521e8
Commit
aac521e8
authored
Jun 05, 2018
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'asoc-4.17' into asoc-4.18 merge window
parents
ff2faf12
c90ddb69
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
7 deletions
+8
-7
MAINTAINERS
MAINTAINERS
+4
-5
sound/soc/codecs/cs35l35.c
sound/soc/codecs/cs35l35.c
+1
-0
sound/soc/intel/boards/bytcr_rt5651.c
sound/soc/intel/boards/bytcr_rt5651.c
+3
-2
No files found.
MAINTAINERS
View file @
aac521e8
...
...
@@ -7023,14 +7023,13 @@ L: linux-fbdev@vger.kernel.org
S: Maintained
F: drivers/video/fbdev/i810/
INTEL ASoC BDW/HSW DRIVERS
INTEL ASoC DRIVERS
M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
M: Liam Girdwood <liam.r.girdwood@linux.intel.com>
M: Jie Yang <yang.jie@linux.intel.com>
L: alsa-devel@alsa-project.org (moderated for non-subscribers)
S: Supported
F: sound/soc/intel/common/sst-dsp*
F: sound/soc/intel/common/sst-firmware.c
F: sound/soc/intel/boards/broadwell.c
F: sound/soc/intel/haswell/
F: sound/soc/intel/
INTEL C600 SERIES SAS CONTROLLER DRIVER
M: Intel SCU Linux support <intel-linux-scu@intel.com>
...
...
sound/soc/codecs/cs35l35.c
View file @
aac521e8
...
...
@@ -1105,6 +1105,7 @@ static struct regmap_config cs35l35_regmap = {
.
readable_reg
=
cs35l35_readable_register
,
.
precious_reg
=
cs35l35_precious_register
,
.
cache_type
=
REGCACHE_RBTREE
,
.
use_single_rw
=
true
,
};
static
irqreturn_t
cs35l35_irq
(
int
irq
,
void
*
data
)
...
...
sound/soc/intel/boards/bytcr_rt5651.c
View file @
aac521e8
...
...
@@ -861,9 +861,10 @@ static int snd_byt_rt5651_mc_probe(struct platform_device *pdev)
if
(
byt_rt5651_quirk
&
BYT_RT5651_MCLK_EN
)
{
priv
->
mclk
=
devm_clk_get
(
&
pdev
->
dev
,
"pmc_plt_clk_3"
);
if
(
IS_ERR
(
priv
->
mclk
))
{
ret_val
=
PTR_ERR
(
priv
->
mclk
);
dev_err
(
&
pdev
->
dev
,
"Failed to get MCLK from pmc_plt_clk_3: %
l
d
\n
"
,
PTR_ERR
(
priv
->
mclk
)
);
"Failed to get MCLK from pmc_plt_clk_3: %d
\n
"
,
ret_val
);
/*
* Fall back to bit clock usage for -ENOENT (clock not
* available likely due to missing dependencies), bail
...
...
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