Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
58be9a93
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看板
提交
58be9a93
编写于
7月 04, 2013
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'asoc/fix/samsung' into asoc-linus
上级
1b368811
b3ff0466
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
5 addition
and
65 deletion
+5
-65
sound/soc/samsung/i2s.c
sound/soc/samsung/i2s.c
+4
-62
sound/soc/samsung/s3c-i2s-v2.c
sound/soc/samsung/s3c-i2s-v2.c
+1
-3
未找到文件。
sound/soc/samsung/i2s.c
浏览文件 @
58be9a93
...
...
@@ -1016,52 +1016,6 @@ static struct i2s_dai *i2s_alloc_dai(struct platform_device *pdev, bool sec)
return
i2s
;
}
#ifdef CONFIG_OF
static
int
samsung_i2s_parse_dt_gpio
(
struct
i2s_dai
*
i2s
)
{
struct
device
*
dev
=
&
i2s
->
pdev
->
dev
;
int
index
,
gpio
,
ret
;
for
(
index
=
0
;
index
<
7
;
index
++
)
{
gpio
=
of_get_gpio
(
dev
->
of_node
,
index
);
if
(
!
gpio_is_valid
(
gpio
))
{
dev_err
(
dev
,
"invalid gpio[%d]: %d
\n
"
,
index
,
gpio
);
goto
free_gpio
;
}
ret
=
gpio_request
(
gpio
,
dev_name
(
dev
));
if
(
ret
)
{
dev_err
(
dev
,
"gpio [%d] request failed
\n
"
,
gpio
);
goto
free_gpio
;
}
i2s
->
gpios
[
index
]
=
gpio
;
}
return
0
;
free_gpio:
while
(
--
index
>=
0
)
gpio_free
(
i2s
->
gpios
[
index
]);
return
-
EINVAL
;
}
static
void
samsung_i2s_dt_gpio_free
(
struct
i2s_dai
*
i2s
)
{
unsigned
int
index
;
for
(
index
=
0
;
index
<
7
;
index
++
)
gpio_free
(
i2s
->
gpios
[
index
]);
}
#else
static
int
samsung_i2s_parse_dt_gpio
(
struct
i2s_dai
*
dai
)
{
return
-
EINVAL
;
}
static
void
samsung_i2s_dt_gpio_free
(
struct
i2s_dai
*
dai
)
{
}
#endif
static
const
struct
of_device_id
exynos_i2s_match
[];
static
inline
int
samsung_i2s_get_driver_data
(
struct
platform_device
*
pdev
)
...
...
@@ -1235,18 +1189,10 @@ static int samsung_i2s_probe(struct platform_device *pdev)
pri_dai
->
sec_dai
=
sec_dai
;
}
if
(
np
)
{
if
(
samsung_i2s_parse_dt_gpio
(
pri_dai
))
{
dev_err
(
&
pdev
->
dev
,
"Unable to configure gpio
\n
"
);
ret
=
-
EINVAL
;
goto
err
;
}
}
else
{
if
(
i2s_pdata
->
cfg_gpio
&&
i2s_pdata
->
cfg_gpio
(
pdev
))
{
dev_err
(
&
pdev
->
dev
,
"Unable to configure gpio
\n
"
);
ret
=
-
EINVAL
;
goto
err
;
}
if
(
i2s_pdata
&&
i2s_pdata
->
cfg_gpio
&&
i2s_pdata
->
cfg_gpio
(
pdev
))
{
dev_err
(
&
pdev
->
dev
,
"Unable to configure gpio
\n
"
);
ret
=
-
EINVAL
;
goto
err
;
}
snd_soc_register_component
(
&
pri_dai
->
pdev
->
dev
,
&
samsung_i2s_component
,
...
...
@@ -1267,14 +1213,10 @@ static int samsung_i2s_remove(struct platform_device *pdev)
{
struct
i2s_dai
*
i2s
,
*
other
;
struct
resource
*
res
;
struct
s3c_audio_pdata
*
i2s_pdata
=
pdev
->
dev
.
platform_data
;
i2s
=
dev_get_drvdata
(
&
pdev
->
dev
);
other
=
i2s
->
pri_dai
?
:
i2s
->
sec_dai
;
if
(
!
i2s_pdata
->
cfg_gpio
&&
pdev
->
dev
.
of_node
)
samsung_i2s_dt_gpio_free
(
i2s
->
pri_dai
);
if
(
other
)
{
other
->
pri_dai
=
NULL
;
other
->
sec_dai
=
NULL
;
...
...
sound/soc/samsung/s3c-i2s-v2.c
浏览文件 @
58be9a93
/* sound/soc/samsung/s3c-i2c-v2.c
*
* ALSA Soc Audio Layer - I2S core for newer Samsung SoCs.
/* ALSA Soc Audio Layer - I2S core for newer Samsung SoCs.
*
* Copyright (c) 2006 Wolfson Microelectronics PLC.
* Graeme Gregory graeme.gregory@wolfsonmicro.com
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录