Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
d50a8740
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
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看板
提交
d50a8740
编写于
11月 23, 2010
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-2.6.37' into for-2.6.38
上级
5033f43c
24fb2b11
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
10 addition
and
2 deletion
+10
-2
sound/soc/codecs/max98088.c
sound/soc/codecs/max98088.c
+3
-0
sound/soc/codecs/tpa6130a2.c
sound/soc/codecs/tpa6130a2.c
+3
-1
sound/soc/codecs/wm8904.c
sound/soc/codecs/wm8904.c
+2
-0
sound/soc/codecs/wm8994.c
sound/soc/codecs/wm8994.c
+2
-0
sound/soc/fsl/mpc5200_dma.c
sound/soc/fsl/mpc5200_dma.c
+0
-1
未找到文件。
sound/soc/codecs/max98088.c
浏览文件 @
d50a8740
...
...
@@ -2020,7 +2020,10 @@ static int max98088_probe(struct snd_soc_codec *codec)
static
int
max98088_remove
(
struct
snd_soc_codec
*
codec
)
{
struct
max98088_priv
*
max98088
=
snd_soc_codec_get_drvdata
(
codec
);
max98088_set_bias_level
(
codec
,
SND_SOC_BIAS_OFF
);
kfree
(
max98088
->
eq_texts
);
return
0
;
}
...
...
sound/soc/codecs/tpa6130a2.c
浏览文件 @
d50a8740
...
...
@@ -77,8 +77,10 @@ static int tpa6130a2_i2c_write(int reg, u8 value)
if
(
data
->
power_state
)
{
val
=
i2c_smbus_write_byte_data
(
tpa6130a2_client
,
reg
,
value
);
if
(
val
<
0
)
if
(
val
<
0
)
{
dev_err
(
&
tpa6130a2_client
->
dev
,
"Write failed
\n
"
);
return
val
;
}
}
/* Either powered on or off, we save the context */
...
...
sound/soc/codecs/wm8904.c
浏览文件 @
d50a8740
...
...
@@ -2498,6 +2498,8 @@ static int wm8904_remove(struct snd_soc_codec *codec)
wm8904_set_bias_level
(
codec
,
SND_SOC_BIAS_OFF
);
regulator_bulk_free
(
ARRAY_SIZE
(
wm8904
->
supplies
),
wm8904
->
supplies
);
kfree
(
wm8904
->
retune_mobile_texts
);
kfree
(
wm8904
->
drc_texts
);
return
0
;
}
...
...
sound/soc/codecs/wm8994.c
浏览文件 @
d50a8740
...
...
@@ -2503,6 +2503,8 @@ static int wm8994_codec_remove(struct snd_soc_codec *codec)
wm8994_free_irq
(
codec
->
control_data
,
WM8994_IRQ_MIC2_DET
,
wm8994
);
wm8994_free_irq
(
codec
->
control_data
,
WM8994_IRQ_MIC1_SHRT
,
wm8994
);
wm8994_free_irq
(
codec
->
control_data
,
WM8994_IRQ_MIC1_DET
,
wm8994
);
kfree
(
wm8994
->
retune_mobile_texts
);
kfree
(
wm8994
->
drc_texts
);
kfree
(
wm8994
);
return
0
;
...
...
sound/soc/fsl/mpc5200_dma.c
浏览文件 @
d50a8740
...
...
@@ -9,7 +9,6 @@
#include <linux/module.h>
#include <linux/of_device.h>
#include <linux/slab.h>
#include <linux/of_device.h>
#include <linux/of_platform.h>
#include <sound/soc.h>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录