Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
0314f694
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看板
提交
0314f694
编写于
9月 01, 2017
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'asoc/topic/const' into asoc-next
上级
2e700424
f13db334
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
9 addition
and
10 deletion
+9
-10
sound/soc/codecs/cs42l42.c
sound/soc/codecs/cs42l42.c
+1
-1
sound/soc/codecs/es8316.c
sound/soc/codecs/es8316.c
+1
-1
sound/soc/codecs/inno_rk3036.c
sound/soc/codecs/inno_rk3036.c
+1
-1
sound/soc/codecs/max9867.c
sound/soc/codecs/max9867.c
+1
-1
sound/soc/codecs/max98926.c
sound/soc/codecs/max98926.c
+1
-1
sound/soc/codecs/msm8916-wcd-analog.c
sound/soc/codecs/msm8916-wcd-analog.c
+0
-1
sound/soc/codecs/rt5616.c
sound/soc/codecs/rt5616.c
+1
-1
sound/soc/codecs/rt5663.c
sound/soc/codecs/rt5663.c
+1
-1
sound/soc/codecs/tas5720.c
sound/soc/codecs/tas5720.c
+1
-1
sound/soc/codecs/zx_aud96p22.c
sound/soc/codecs/zx_aud96p22.c
+1
-1
未找到文件。
sound/soc/codecs/cs42l42.c
浏览文件 @
0314f694
...
...
@@ -911,7 +911,7 @@ static int cs42l42_digital_mute(struct snd_soc_dai *dai, int mute)
SNDRV_PCM_FMTBIT_S32_LE)
static
struct
snd_soc_dai_ops
cs42l42_ops
=
{
static
const
struct
snd_soc_dai_ops
cs42l42_ops
=
{
.
hw_params
=
cs42l42_pcm_hw_params
,
.
set_fmt
=
cs42l42_set_dai_fmt
,
.
set_sysclk
=
cs42l42_set_sysclk
,
...
...
sound/soc/codecs/es8316.c
浏览文件 @
0314f694
...
...
@@ -502,7 +502,7 @@ static int es8316_mute(struct snd_soc_dai *dai, int mute)
#define ES8316_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
SNDRV_PCM_FMTBIT_S24_LE)
static
struct
snd_soc_dai_ops
es8316_ops
=
{
static
const
struct
snd_soc_dai_ops
es8316_ops
=
{
.
startup
=
es8316_pcm_startup
,
.
hw_params
=
es8316_pcm_hw_params
,
.
set_fmt
=
es8316_set_dai_fmt
,
...
...
sound/soc/codecs/inno_rk3036.c
浏览文件 @
0314f694
...
...
@@ -310,7 +310,7 @@ static int rk3036_codec_dai_hw_params(struct snd_pcm_substream *substream,
SNDRV_PCM_FMTBIT_S24_LE | \
SNDRV_PCM_FMTBIT_S32_LE)
static
struct
snd_soc_dai_ops
rk3036_codec_dai_ops
=
{
static
const
struct
snd_soc_dai_ops
rk3036_codec_dai_ops
=
{
.
set_fmt
=
rk3036_codec_dai_set_fmt
,
.
hw_params
=
rk3036_codec_dai_hw_params
,
};
...
...
sound/soc/codecs/max9867.c
浏览文件 @
0314f694
...
...
@@ -350,7 +350,7 @@ static int max9867_dai_set_fmt(struct snd_soc_dai *codec_dai,
return
0
;
}
static
struct
snd_soc_dai_ops
max9867_dai_ops
=
{
static
const
struct
snd_soc_dai_ops
max9867_dai_ops
=
{
.
set_fmt
=
max9867_dai_set_fmt
,
.
set_sysclk
=
max9867_set_dai_sysclk
,
.
prepare
=
max9867_prepare
,
...
...
sound/soc/codecs/max98926.c
浏览文件 @
0314f694
...
...
@@ -459,7 +459,7 @@ static int max98926_dai_hw_params(struct snd_pcm_substream *substream,
#define MAX98926_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \
SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
static
struct
snd_soc_dai_ops
max98926_dai_ops
=
{
static
const
struct
snd_soc_dai_ops
max98926_dai_ops
=
{
.
set_fmt
=
max98926_dai_set_fmt
,
.
hw_params
=
max98926_dai_hw_params
,
};
...
...
sound/soc/codecs/msm8916-wcd-analog.c
浏览文件 @
0314f694
...
...
@@ -998,7 +998,6 @@ static irqreturn_t mbhc_btn_press_irq_handler(int irq, void *arg)
return
IRQ_HANDLED
;
}
static
irqreturn_t
pm8916_mbhc_switch_irq_handler
(
int
irq
,
void
*
arg
)
{
struct
pm8916_wcd_analog_priv
*
priv
=
arg
;
...
...
sound/soc/codecs/rt5616.c
浏览文件 @
0314f694
...
...
@@ -1265,7 +1265,7 @@ static int rt5616_resume(struct snd_soc_codec *codec)
#define RT5616_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S8)
static
struct
snd_soc_dai_ops
rt5616_aif_dai_ops
=
{
static
const
struct
snd_soc_dai_ops
rt5616_aif_dai_ops
=
{
.
hw_params
=
rt5616_hw_params
,
.
set_fmt
=
rt5616_set_dai_fmt
,
.
set_sysclk
=
rt5616_set_dai_sysclk
,
...
...
sound/soc/codecs/rt5663.c
浏览文件 @
0314f694
...
...
@@ -2860,7 +2860,7 @@ static int rt5663_resume(struct snd_soc_codec *codec)
#define RT5663_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S8)
static
struct
snd_soc_dai_ops
rt5663_aif_dai_ops
=
{
static
const
struct
snd_soc_dai_ops
rt5663_aif_dai_ops
=
{
.
hw_params
=
rt5663_hw_params
,
.
set_fmt
=
rt5663_set_dai_fmt
,
.
set_sysclk
=
rt5663_set_dai_sysclk
,
...
...
sound/soc/codecs/tas5720.c
浏览文件 @
0314f694
...
...
@@ -507,7 +507,7 @@ static const struct snd_soc_codec_driver soc_codec_dev_tas5720 = {
#define TAS5720_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S18_3LE |\
SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S24_LE)
static
struct
snd_soc_dai_ops
tas5720_speaker_dai_ops
=
{
static
const
struct
snd_soc_dai_ops
tas5720_speaker_dai_ops
=
{
.
hw_params
=
tas5720_hw_params
,
.
set_fmt
=
tas5720_set_dai_fmt
,
.
set_tdm_slot
=
tas5720_set_dai_tdm_slot
,
...
...
sound/soc/codecs/zx_aud96p22.c
浏览文件 @
0314f694
...
...
@@ -312,7 +312,7 @@ static int aud96p22_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
return
0
;
}
static
struct
snd_soc_dai_ops
aud96p22_dai_ops
=
{
static
const
struct
snd_soc_dai_ops
aud96p22_dai_ops
=
{
.
set_fmt
=
aud96p22_set_fmt
,
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录