Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
c2549312
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看板
提交
c2549312
编写于
13年前
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fix/hda' into topic/hda
上级
8d087c76
9966db22
无相关合并请求
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
10 addition
and
17 deletion
+10
-17
include/sound/soc.h
include/sound/soc.h
+1
-2
sound/pci/asihpi/asihpi.c
sound/pci/asihpi/asihpi.c
+0
-1
sound/pci/hda/patch_conexant.c
sound/pci/hda/patch_conexant.c
+4
-0
sound/soc/codecs/wm8991.c
sound/soc/codecs/wm8991.c
+0
-1
sound/soc/imx/Kconfig
sound/soc/imx/Kconfig
+0
-7
sound/soc/imx/imx-pcm-dma-mx2.c
sound/soc/imx/imx-pcm-dma-mx2.c
+2
-0
sound/soc/imx/imx-ssi.c
sound/soc/imx/imx-ssi.c
+1
-1
sound/soc/pxa/pxa2xx-pcm.c
sound/soc/pxa/pxa2xx-pcm.c
+2
-2
sound/soc/soc-cache.c
sound/soc/soc-cache.c
+0
-3
未找到文件。
include/sound/soc.h
浏览文件 @
c2549312
...
...
@@ -248,8 +248,7 @@ typedef int (*hw_write_t)(void *,const char* ,int);
extern
struct
snd_ac97_bus_ops
soc_ac97_ops
;
enum
snd_soc_control_type
{
SND_SOC_CUSTOM
=
1
,
SND_SOC_I2C
,
SND_SOC_I2C
=
1
,
SND_SOC_SPI
,
};
...
...
This diff is collapsed.
Click to expand it.
sound/pci/asihpi/asihpi.c
浏览文件 @
c2549312
...
...
@@ -27,7 +27,6 @@
#include "hpioctl.h"
#include <linux/pci.h>
#include <linux/version.h>
#include <linux/init.h>
#include <linux/jiffies.h>
#include <linux/slab.h>
...
...
This diff is collapsed.
Click to expand it.
sound/pci/hda/patch_conexant.c
浏览文件 @
c2549312
...
...
@@ -3075,6 +3075,7 @@ static const char * const cxt5066_models[CXT5066_MODELS] = {
};
static
const
struct
snd_pci_quirk
cxt5066_cfg_tbl
[]
=
{
SND_PCI_QUIRK
(
0x1025
,
0x054c
,
"Acer Aspire 3830TG"
,
CXT5066_AUTO
),
SND_PCI_QUIRK_MASK
(
0x1025
,
0xff00
,
0x0400
,
"Acer"
,
CXT5066_IDEAPAD
),
SND_PCI_QUIRK
(
0x1028
,
0x02d8
,
"Dell Vostro"
,
CXT5066_DELL_VOSTRO
),
SND_PCI_QUIRK
(
0x1028
,
0x02f5
,
"Dell Vostro 320"
,
CXT5066_IDEAPAD
),
...
...
@@ -4379,6 +4380,8 @@ static const struct hda_codec_preset snd_hda_preset_conexant[] = {
.
patch
=
patch_cxt5066
},
{
.
id
=
0x14f15069
,
.
name
=
"CX20585"
,
.
patch
=
patch_cxt5066
},
{
.
id
=
0x14f1506c
,
.
name
=
"CX20588"
,
.
patch
=
patch_cxt5066
},
{
.
id
=
0x14f1506e
,
.
name
=
"CX20590"
,
.
patch
=
patch_cxt5066
},
{
.
id
=
0x14f15097
,
.
name
=
"CX20631"
,
...
...
@@ -4407,6 +4410,7 @@ MODULE_ALIAS("snd-hda-codec-id:14f15066");
MODULE_ALIAS
(
"snd-hda-codec-id:14f15067"
);
MODULE_ALIAS
(
"snd-hda-codec-id:14f15068"
);
MODULE_ALIAS
(
"snd-hda-codec-id:14f15069"
);
MODULE_ALIAS
(
"snd-hda-codec-id:14f1506c"
);
MODULE_ALIAS
(
"snd-hda-codec-id:14f1506e"
);
MODULE_ALIAS
(
"snd-hda-codec-id:14f15097"
);
MODULE_ALIAS
(
"snd-hda-codec-id:14f15098"
);
...
...
This diff is collapsed.
Click to expand it.
sound/soc/codecs/wm8991.c
浏览文件 @
c2549312
...
...
@@ -13,7 +13,6 @@
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/version.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/delay.h>
...
...
This diff is collapsed.
Click to expand it.
sound/soc/imx/Kconfig
浏览文件 @
c2549312
...
...
@@ -11,9 +11,6 @@ menuconfig SND_IMX_SOC
if SND_IMX_SOC
config SND_MXC_SOC_SSI
tristate
config SND_MXC_SOC_FIQ
tristate
...
...
@@ -24,7 +21,6 @@ config SND_MXC_SOC_WM1133_EV1
tristate "Audio on the the i.MX31ADS with WM1133-EV1 fitted"
depends on MACH_MX31ADS_WM1133_EV1 && EXPERIMENTAL
select SND_SOC_WM8350
select SND_MXC_SOC_SSI
select SND_MXC_SOC_FIQ
help
Enable support for audio on the i.MX31ADS with the WM1133-EV1
...
...
@@ -34,7 +30,6 @@ config SND_SOC_MX27VIS_AIC32X4
tristate "SoC audio support for Visstrim M10 boards"
depends on MACH_IMX27_VISSTRIM_M10
select SND_SOC_TVL320AIC32X4
select SND_MXC_SOC_SSI
select SND_MXC_SOC_MX2
help
Say Y if you want to add support for SoC audio on Visstrim SM10
...
...
@@ -44,7 +39,6 @@ config SND_SOC_PHYCORE_AC97
tristate "SoC Audio support for Phytec phyCORE (and phyCARD) boards"
depends on MACH_PCM043 || MACH_PCA100
select SND_SOC_WM9712
select SND_MXC_SOC_SSI
select SND_MXC_SOC_FIQ
help
Say Y if you want to add support for SoC audio on Phytec phyCORE
...
...
@@ -57,7 +51,6 @@ config SND_SOC_EUKREA_TLV320
|| MACH_EUKREA_MBIMXSD35_BASEBOARD \
|| MACH_EUKREA_MBIMXSD51_BASEBOARD
select SND_SOC_TLV320AIC23
select SND_MXC_SOC_SSI
select SND_MXC_SOC_FIQ
help
Enable I2S based access to the TLV320AIC23B codec attached
...
...
This diff is collapsed.
Click to expand it.
sound/soc/imx/imx-pcm-dma-mx2.c
浏览文件 @
c2549312
...
...
@@ -337,3 +337,5 @@ static void __exit snd_imx_pcm_exit(void)
platform_driver_unregister
(
&
imx_pcm_driver
);
}
module_exit
(
snd_imx_pcm_exit
);
MODULE_LICENSE
(
"GPL"
);
MODULE_ALIAS
(
"platform:imx-pcm-audio"
);
This diff is collapsed.
Click to expand it.
sound/soc/imx/imx-ssi.c
浏览文件 @
c2549312
...
...
@@ -774,4 +774,4 @@ module_exit(imx_ssi_exit);
MODULE_AUTHOR
(
"Sascha Hauer, <s.hauer@pengutronix.de>"
);
MODULE_DESCRIPTION
(
"i.MX I2S/ac97 SoC Interface"
);
MODULE_LICENSE
(
"GPL"
);
MODULE_ALIAS
(
"platform:imx-ssi"
);
This diff is collapsed.
Click to expand it.
sound/soc/pxa/pxa2xx-pcm.c
浏览文件 @
c2549312
...
...
@@ -95,14 +95,14 @@ static int pxa2xx_soc_pcm_new(struct snd_card *card, struct snd_soc_dai *dai,
if
(
!
card
->
dev
->
coherent_dma_mask
)
card
->
dev
->
coherent_dma_mask
=
DMA_BIT_MASK
(
32
);
if
(
dai
->
driver
->
playback
.
channels_min
)
{
if
(
pcm
->
streams
[
SNDRV_PCM_STREAM_PLAYBACK
].
substream
)
{
ret
=
pxa2xx_pcm_preallocate_dma_buffer
(
pcm
,
SNDRV_PCM_STREAM_PLAYBACK
);
if
(
ret
)
goto
out
;
}
if
(
dai
->
driver
->
capture
.
channels_min
)
{
if
(
pcm
->
streams
[
SNDRV_PCM_STREAM_CAPTURE
].
substream
)
{
ret
=
pxa2xx_pcm_preallocate_dma_buffer
(
pcm
,
SNDRV_PCM_STREAM_CAPTURE
);
if
(
ret
)
...
...
This diff is collapsed.
Click to expand it.
sound/soc/soc-cache.c
浏览文件 @
c2549312
...
...
@@ -409,9 +409,6 @@ int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec,
codec
->
bulk_write_raw
=
snd_soc_hw_bulk_write_raw
;
switch
(
control
)
{
case
SND_SOC_CUSTOM
:
break
;
case
SND_SOC_I2C
:
#if defined(CONFIG_I2C) || (defined(CONFIG_I2C_MODULE) && defined(MODULE))
codec
->
hw_write
=
(
hw_write_t
)
i2c_master_send
;
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
反馈
建议
客服
返回
顶部