Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
8df6bf1c
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看板
提交
8df6bf1c
编写于
12月 10, 2012
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'asoc/topic/hotplug' into asoc-next
上级
aaa3bb26
6939565f
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
22 addition
and
22 deletion
+22
-22
sound/soc/codecs/max98088.c
sound/soc/codecs/max98088.c
+7
-7
sound/soc/codecs/wm5100.c
sound/soc/codecs/wm5100.c
+1
-1
sound/soc/soc-core.c
sound/soc/soc-core.c
+1
-1
sound/soc/tegra/tegra20_das.c
sound/soc/tegra/tegra20_das.c
+1
-1
sound/soc/tegra/tegra20_i2s.c
sound/soc/tegra/tegra20_i2s.c
+2
-2
sound/soc/tegra/tegra20_spdif.c
sound/soc/tegra/tegra20_spdif.c
+1
-1
sound/soc/tegra/tegra30_ahub.c
sound/soc/tegra/tegra30_ahub.c
+3
-3
sound/soc/tegra/tegra30_i2s.c
sound/soc/tegra/tegra30_i2s.c
+2
-2
sound/soc/tegra/tegra_alc5632.c
sound/soc/tegra/tegra_alc5632.c
+1
-1
sound/soc/tegra/tegra_wm8753.c
sound/soc/tegra/tegra_wm8753.c
+1
-1
sound/soc/tegra/tegra_wm8903.c
sound/soc/tegra/tegra_wm8903.c
+1
-1
sound/soc/tegra/trimslice.c
sound/soc/tegra/trimslice.c
+1
-1
未找到文件。
sound/soc/codecs/max98088.c
浏览文件 @
8df6bf1c
...
...
@@ -2098,13 +2098,13 @@ static const struct i2c_device_id max98088_i2c_id[] = {
MODULE_DEVICE_TABLE
(
i2c
,
max98088_i2c_id
);
static
struct
i2c_driver
max98088_i2c_driver
=
{
.
driver
=
{
.
name
=
"max98088"
,
.
owner
=
THIS_MODULE
,
},
.
probe
=
max98088_i2c_probe
,
.
remove
=
__devexit_p
(
max98088_i2c_remove
)
,
.
id_table
=
max98088_i2c_id
,
.
driver
=
{
.
name
=
"max98088"
,
.
owner
=
THIS_MODULE
,
},
.
probe
=
max98088_i2c_probe
,
.
remove
=
max98088_i2c_remove
,
.
id_table
=
max98088_i2c_id
,
};
module_i2c_driver
(
max98088_i2c_driver
);
...
...
sound/soc/codecs/wm5100.c
浏览文件 @
8df6bf1c
...
...
@@ -1233,7 +1233,7 @@ static const struct snd_soc_dapm_route wm5100_dapm_routes[] = {
{
"PWM2"
,
NULL
,
"PWM2 Driver"
},
};
static
const
__devinitconst
struct
reg_default
wm5100_reva_patches
[]
=
{
static
const
struct
reg_default
wm5100_reva_patches
[]
=
{
{
WM5100_AUDIO_IF_1_10
,
0
},
{
WM5100_AUDIO_IF_1_11
,
1
},
{
WM5100_AUDIO_IF_1_12
,
2
},
...
...
sound/soc/soc-core.c
浏览文件 @
8df6bf1c
...
...
@@ -4007,7 +4007,7 @@ int snd_soc_register_codec(struct device *dev,
codec
->
reg_size
=
reg_size
;
/* it is necessary to make a copy of the default register cache
* because in the case of using a compression type that requires
* the default register cache to be marked as
__devinitconst
the
* the default register cache to be marked as the
* kernel might have freed the array by the time we initialize
* the cache.
*/
...
...
sound/soc/tegra/tegra20_das.c
浏览文件 @
8df6bf1c
...
...
@@ -210,7 +210,7 @@ static int __devexit tegra20_das_remove(struct platform_device *pdev)
return
0
;
}
static
const
struct
of_device_id
tegra20_das_of_match
[]
__devinitconst
=
{
static
const
struct
of_device_id
tegra20_das_of_match
[]
=
{
{
.
compatible
=
"nvidia,tegra20-das"
,
},
{},
};
...
...
sound/soc/tegra/tegra20_i2s.c
浏览文件 @
8df6bf1c
...
...
@@ -463,12 +463,12 @@ static int __devexit tegra20_i2s_platform_remove(struct platform_device *pdev)
return
0
;
}
static
const
struct
of_device_id
tegra20_i2s_of_match
[]
__devinitconst
=
{
static
const
struct
of_device_id
tegra20_i2s_of_match
[]
=
{
{
.
compatible
=
"nvidia,tegra20-i2s"
,
},
{},
};
static
const
struct
dev_pm_ops
tegra20_i2s_pm_ops
__devinitconst
=
{
static
const
struct
dev_pm_ops
tegra20_i2s_pm_ops
=
{
SET_RUNTIME_PM_OPS
(
tegra20_i2s_runtime_suspend
,
tegra20_i2s_runtime_resume
,
NULL
)
};
...
...
sound/soc/tegra/tegra20_spdif.c
浏览文件 @
8df6bf1c
...
...
@@ -373,7 +373,7 @@ static int __devexit tegra20_spdif_platform_remove(struct platform_device *pdev)
return
0
;
}
static
const
struct
dev_pm_ops
tegra20_spdif_pm_ops
__devinitconst
=
{
static
const
struct
dev_pm_ops
tegra20_spdif_pm_ops
=
{
SET_RUNTIME_PM_OPS
(
tegra20_spdif_runtime_suspend
,
tegra20_spdif_runtime_resume
,
NULL
)
};
...
...
sound/soc/tegra/tegra30_ahub.c
浏览文件 @
8df6bf1c
...
...
@@ -288,7 +288,7 @@ int tegra30_ahub_unset_rx_cif_source(enum tegra30_ahub_rxcif rxcif)
}
EXPORT_SYMBOL_GPL
(
tegra30_ahub_unset_rx_cif_source
);
static
const
char
*
const
configlink_clocks
[]
__devinitconst
=
{
static
const
char
*
const
configlink_clocks
[]
=
{
"i2s0"
,
"i2s1"
,
"i2s2"
,
...
...
@@ -603,12 +603,12 @@ static int __devexit tegra30_ahub_remove(struct platform_device *pdev)
return
0
;
}
static
const
struct
of_device_id
tegra30_ahub_of_match
[]
__devinitconst
=
{
static
const
struct
of_device_id
tegra30_ahub_of_match
[]
=
{
{
.
compatible
=
"nvidia,tegra30-ahub"
,
},
{},
};
static
const
struct
dev_pm_ops
tegra30_ahub_pm_ops
__devinitconst
=
{
static
const
struct
dev_pm_ops
tegra30_ahub_pm_ops
=
{
SET_RUNTIME_PM_OPS
(
tegra30_ahub_runtime_suspend
,
tegra30_ahub_runtime_resume
,
NULL
)
};
...
...
sound/soc/tegra/tegra30_i2s.c
浏览文件 @
8df6bf1c
...
...
@@ -508,12 +508,12 @@ static int __devexit tegra30_i2s_platform_remove(struct platform_device *pdev)
return
0
;
}
static
const
struct
of_device_id
tegra30_i2s_of_match
[]
__devinitconst
=
{
static
const
struct
of_device_id
tegra30_i2s_of_match
[]
=
{
{
.
compatible
=
"nvidia,tegra30-i2s"
,
},
{},
};
static
const
struct
dev_pm_ops
tegra30_i2s_pm_ops
__devinitconst
=
{
static
const
struct
dev_pm_ops
tegra30_i2s_pm_ops
=
{
SET_RUNTIME_PM_OPS
(
tegra30_i2s_runtime_suspend
,
tegra30_i2s_runtime_resume
,
NULL
)
};
...
...
sound/soc/tegra/tegra_alc5632.c
浏览文件 @
8df6bf1c
...
...
@@ -242,7 +242,7 @@ static int __devexit tegra_alc5632_remove(struct platform_device *pdev)
return
0
;
}
static
const
struct
of_device_id
tegra_alc5632_of_match
[]
__devinitconst
=
{
static
const
struct
of_device_id
tegra_alc5632_of_match
[]
=
{
{
.
compatible
=
"nvidia,tegra-audio-alc5632"
,
},
{},
};
...
...
sound/soc/tegra/tegra_wm8753.c
浏览文件 @
8df6bf1c
...
...
@@ -200,7 +200,7 @@ static int __devexit tegra_wm8753_driver_remove(struct platform_device *pdev)
return
0
;
}
static
const
struct
of_device_id
tegra_wm8753_of_match
[]
__devinitconst
=
{
static
const
struct
of_device_id
tegra_wm8753_of_match
[]
=
{
{
.
compatible
=
"nvidia,tegra-audio-wm8753"
,
},
{},
};
...
...
sound/soc/tegra/tegra_wm8903.c
浏览文件 @
8df6bf1c
...
...
@@ -417,7 +417,7 @@ static int __devexit tegra_wm8903_driver_remove(struct platform_device *pdev)
return
0
;
}
static
const
struct
of_device_id
tegra_wm8903_of_match
[]
__devinitconst
=
{
static
const
struct
of_device_id
tegra_wm8903_of_match
[]
=
{
{
.
compatible
=
"nvidia,tegra-audio-wm8903"
,
},
{},
};
...
...
sound/soc/tegra/trimslice.c
浏览文件 @
8df6bf1c
...
...
@@ -195,7 +195,7 @@ static int __devexit tegra_snd_trimslice_remove(struct platform_device *pdev)
return
0
;
}
static
const
struct
of_device_id
trimslice_of_match
[]
__devinitconst
=
{
static
const
struct
of_device_id
trimslice_of_match
[]
=
{
{
.
compatible
=
"nvidia,tegra-audio-trimslice"
,
},
{},
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录