Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
5a7fa6b0
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
5a7fa6b0
编写于
2月 09, 2015
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branches 'asoc/topic/mxs-saif' and 'asoc/topic/nuc900' into asoc-next
上级
6e685ea6
5396ecf7
3a96878e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
5 addition
and
12 deletion
+5
-12
sound/soc/mxs/mxs-saif.c
sound/soc/mxs/mxs-saif.c
+5
-5
sound/soc/mxs/mxs-saif.h
sound/soc/mxs/mxs-saif.h
+0
-1
sound/soc/nuc900/nuc900-pcm.c
sound/soc/nuc900/nuc900-pcm.c
+0
-6
未找到文件。
sound/soc/mxs/mxs-saif.c
浏览文件 @
5a7fa6b0
...
...
@@ -710,7 +710,7 @@ static int mxs_saif_probe(struct platform_device *pdev)
struct
device_node
*
np
=
pdev
->
dev
.
of_node
;
struct
resource
*
iores
;
struct
mxs_saif
*
saif
;
int
ret
=
0
;
int
irq
,
ret
=
0
;
struct
device_node
*
master
;
if
(
!
np
)
...
...
@@ -763,16 +763,16 @@ static int mxs_saif_probe(struct platform_device *pdev)
if
(
IS_ERR
(
saif
->
base
))
return
PTR_ERR
(
saif
->
base
);
saif
->
irq
=
platform_get_irq
(
pdev
,
0
);
if
(
saif
->
irq
<
0
)
{
ret
=
saif
->
irq
;
irq
=
platform_get_irq
(
pdev
,
0
);
if
(
irq
<
0
)
{
ret
=
irq
;
dev_err
(
&
pdev
->
dev
,
"failed to get irq resource: %d
\n
"
,
ret
);
return
ret
;
}
saif
->
dev
=
&
pdev
->
dev
;
ret
=
devm_request_irq
(
&
pdev
->
dev
,
saif
->
irq
,
mxs_saif_irq
,
0
,
ret
=
devm_request_irq
(
&
pdev
->
dev
,
irq
,
mxs_saif_irq
,
0
,
dev_name
(
&
pdev
->
dev
),
saif
);
if
(
ret
)
{
dev_err
(
&
pdev
->
dev
,
"failed to request irq
\n
"
);
...
...
sound/soc/mxs/mxs-saif.h
浏览文件 @
5a7fa6b0
...
...
@@ -116,7 +116,6 @@ struct mxs_saif {
unsigned
int
mclk
;
unsigned
int
mclk_in_use
;
void
__iomem
*
base
;
int
irq
;
unsigned
int
id
;
unsigned
int
master_id
;
unsigned
int
cur_rate
;
...
...
sound/soc/nuc900/nuc900-pcm.c
浏览文件 @
5a7fa6b0
...
...
@@ -306,11 +306,6 @@ static struct snd_pcm_ops nuc900_dma_ops = {
.
mmap
=
nuc900_dma_mmap
,
};
static
void
nuc900_dma_free_dma_buffers
(
struct
snd_pcm
*
pcm
)
{
snd_pcm_lib_preallocate_free_for_all
(
pcm
);
}
static
int
nuc900_dma_new
(
struct
snd_soc_pcm_runtime
*
rtd
)
{
struct
snd_card
*
card
=
rtd
->
card
->
snd_card
;
...
...
@@ -330,7 +325,6 @@ static int nuc900_dma_new(struct snd_soc_pcm_runtime *rtd)
static
struct
snd_soc_platform_driver
nuc900_soc_platform
=
{
.
ops
=
&
nuc900_dma_ops
,
.
pcm_new
=
nuc900_dma_new
,
.
pcm_free
=
nuc900_dma_free_dma_buffers
,
};
static
int
nuc900_soc_platform_probe
(
struct
platform_device
*
pdev
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录