Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
64a07133
K
Kernel
项目概览
openeuler
/
Kernel
接近 2 年 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
64a07133
编写于
3月 04, 2015
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'asoc/fix/atmel-build' into asoc-linus
上级
13a7a6ac
d7a6fe01
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
31 addition
and
37 deletion
+31
-37
sound/soc/atmel/sam9g20_wm8731.c
sound/soc/atmel/sam9g20_wm8731.c
+31
-37
未找到文件。
sound/soc/atmel/sam9g20_wm8731.c
浏览文件 @
64a07133
...
@@ -46,8 +46,6 @@
...
@@ -46,8 +46,6 @@
#include <sound/pcm_params.h>
#include <sound/pcm_params.h>
#include <sound/soc.h>
#include <sound/soc.h>
#include <asm/mach-types.h>
#include "../codecs/wm8731.h"
#include "../codecs/wm8731.h"
#include "atmel-pcm.h"
#include "atmel-pcm.h"
#include "atmel_ssc_dai.h"
#include "atmel_ssc_dai.h"
...
@@ -171,9 +169,7 @@ static int at91sam9g20ek_audio_probe(struct platform_device *pdev)
...
@@ -171,9 +169,7 @@ static int at91sam9g20ek_audio_probe(struct platform_device *pdev)
int
ret
;
int
ret
;
if
(
!
np
)
{
if
(
!
np
)
{
if
(
!
(
machine_is_at91sam9g20ek
()
||
return
-
ENODEV
;
machine_is_at91sam9g20ek_2mmc
()))
return
-
ENODEV
;
}
}
ret
=
atmel_ssc_set_audio
(
0
);
ret
=
atmel_ssc_set_audio
(
0
);
...
@@ -210,39 +206,37 @@ static int at91sam9g20ek_audio_probe(struct platform_device *pdev)
...
@@ -210,39 +206,37 @@ static int at91sam9g20ek_audio_probe(struct platform_device *pdev)
card
->
dev
=
&
pdev
->
dev
;
card
->
dev
=
&
pdev
->
dev
;
/* Parse device node info */
/* Parse device node info */
if
(
np
)
{
ret
=
snd_soc_of_parse_card_name
(
card
,
"atmel,model"
);
ret
=
snd_soc_of_parse_card_name
(
card
,
"atmel,model"
);
if
(
ret
)
if
(
ret
)
goto
err
;
goto
err
;
ret
=
snd_soc_of_parse_audio_routing
(
card
,
ret
=
snd_soc_of_parse_audio_routing
(
card
,
"atmel,audio-routing"
);
"atmel,audio-routing"
);
if
(
ret
)
if
(
ret
)
goto
err
;
goto
err
;
/* Parse codec info */
/* Parse codec info */
at91sam9g20ek_dai
.
codec_name
=
NULL
;
at91sam9g20ek_dai
.
codec_name
=
NULL
;
codec_np
=
of_parse_phandle
(
np
,
"atmel,audio-codec"
,
0
);
codec_np
=
of_parse_phandle
(
np
,
"atmel,audio-codec"
,
0
);
if
(
!
codec_np
)
{
if
(
!
codec_np
)
{
dev_err
(
&
pdev
->
dev
,
"codec info missing
\n
"
);
dev_err
(
&
pdev
->
dev
,
"codec info missing
\n
"
);
return
-
EINVAL
;
return
-
EINVAL
;
}
}
at91sam9g20ek_dai
.
codec_of_node
=
codec_np
;
at91sam9g20ek_dai
.
codec_of_node
=
codec_np
;
/* Parse dai and platform info */
/* Parse dai and platform info */
at91sam9g20ek_dai
.
cpu_dai_name
=
NULL
;
at91sam9g20ek_dai
.
cpu_dai_name
=
NULL
;
at91sam9g20ek_dai
.
platform_name
=
NULL
;
at91sam9g20ek_dai
.
platform_name
=
NULL
;
cpu_np
=
of_parse_phandle
(
np
,
"atmel,ssc-controller"
,
0
);
cpu_np
=
of_parse_phandle
(
np
,
"atmel,ssc-controller"
,
0
);
if
(
!
cpu_np
)
{
if
(
!
cpu_np
)
{
dev_err
(
&
pdev
->
dev
,
"dai and pcm info missing
\n
"
);
dev_err
(
&
pdev
->
dev
,
"dai and pcm info missing
\n
"
);
return
-
EINVAL
;
return
-
EINVAL
;
}
at91sam9g20ek_dai
.
cpu_of_node
=
cpu_np
;
at91sam9g20ek_dai
.
platform_of_node
=
cpu_np
;
of_node_put
(
codec_np
);
of_node_put
(
cpu_np
);
}
}
at91sam9g20ek_dai
.
cpu_of_node
=
cpu_np
;
at91sam9g20ek_dai
.
platform_of_node
=
cpu_np
;
of_node_put
(
codec_np
);
of_node_put
(
cpu_np
);
ret
=
snd_soc_register_card
(
card
);
ret
=
snd_soc_register_card
(
card
);
if
(
ret
)
{
if
(
ret
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录