Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
2ebfb8ee
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
提交
2ebfb8ee
编写于
2月 05, 2009
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ALSA: Add missing KERN_* prefix to printk in other sound/*
Signed-off-by:
N
Takashi Iwai
<
tiwai@suse.de
>
上级
ee419653
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
22 addition
and
14 deletion
+22
-14
sound/arm/sa11xx-uda1341.c
sound/arm/sa11xx-uda1341.c
+1
-1
sound/mips/au1x00.c
sound/mips/au1x00.c
+1
-1
sound/pcmcia/pdaudiocf/pdaudiocf_core.c
sound/pcmcia/pdaudiocf/pdaudiocf_core.c
+15
-8
sound/pcmcia/pdaudiocf/pdaudiocf_irq.c
sound/pcmcia/pdaudiocf/pdaudiocf_irq.c
+2
-2
sound/sparc/amd7930.c
sound/sparc/amd7930.c
+3
-2
未找到文件。
sound/arm/sa11xx-uda1341.c
浏览文件 @
2ebfb8ee
...
...
@@ -914,7 +914,7 @@ static int __devinit sa11xx_uda1341_probe(struct platform_device *devptr)
snd_card_set_dev
(
card
,
&
devptr
->
dev
);
if
((
err
=
snd_card_register
(
card
))
==
0
)
{
printk
(
KERN_INFO
"iPAQ audio support initialized
\n
"
);
printk
(
KERN_INFO
"iPAQ audio support initialized
\n
"
);
platform_set_drvdata
(
devptr
,
card
);
return
0
;
}
...
...
sound/mips/au1x00.c
浏览文件 @
2ebfb8ee
...
...
@@ -678,7 +678,7 @@ au1000_init(void)
return
err
;
}
printk
(
KERN_INFO
"ALSA AC97: Driver Initialized
\n
"
);
printk
(
KERN_INFO
"ALSA AC97: Driver Initialized
\n
"
);
au1000_card
=
card
;
return
0
;
}
...
...
sound/pcmcia/pdaudiocf/pdaudiocf_core.c
浏览文件 @
2ebfb8ee
...
...
@@ -82,14 +82,21 @@ static void pdacf_ak4117_write(void *private_data, unsigned char reg, unsigned c
#if 0
void pdacf_dump(struct snd_pdacf *chip)
{
printk("PDAUDIOCF DUMP (0x%lx):\n", chip->port);
printk("WPD : 0x%x\n", inw(chip->port + PDAUDIOCF_REG_WDP));
printk("RDP : 0x%x\n", inw(chip->port + PDAUDIOCF_REG_RDP));
printk("TCR : 0x%x\n", inw(chip->port + PDAUDIOCF_REG_TCR));
printk("SCR : 0x%x\n", inw(chip->port + PDAUDIOCF_REG_SCR));
printk("ISR : 0x%x\n", inw(chip->port + PDAUDIOCF_REG_ISR));
printk("IER : 0x%x\n", inw(chip->port + PDAUDIOCF_REG_IER));
printk("AK_IFR : 0x%x\n", inw(chip->port + PDAUDIOCF_REG_AK_IFR));
printk(KERN_DEBUG "PDAUDIOCF DUMP (0x%lx):\n", chip->port);
printk(KERN_DEBUG "WPD : 0x%x\n",
inw(chip->port + PDAUDIOCF_REG_WDP));
printk(KERN_DEBUG "RDP : 0x%x\n",
inw(chip->port + PDAUDIOCF_REG_RDP));
printk(KERN_DEBUG "TCR : 0x%x\n",
inw(chip->port + PDAUDIOCF_REG_TCR));
printk(KERN_DEBUG "SCR : 0x%x\n",
inw(chip->port + PDAUDIOCF_REG_SCR));
printk(KERN_DEBUG "ISR : 0x%x\n",
inw(chip->port + PDAUDIOCF_REG_ISR));
printk(KERN_DEBUG "IER : 0x%x\n",
inw(chip->port + PDAUDIOCF_REG_IER));
printk(KERN_DEBUG "AK_IFR : 0x%x\n",
inw(chip->port + PDAUDIOCF_REG_AK_IFR));
}
#endif
...
...
sound/pcmcia/pdaudiocf/pdaudiocf_irq.c
浏览文件 @
2ebfb8ee
...
...
@@ -269,7 +269,7 @@ void pdacf_tasklet(unsigned long private_data)
rdp
=
inw
(
chip
->
port
+
PDAUDIOCF_REG_RDP
);
wdp
=
inw
(
chip
->
port
+
PDAUDIOCF_REG_WDP
);
/
/ printk("TASKLET: rdp = %x, wdp = %x\n", rdp, wdp);
/
* printk(KERN_DEBUG "TASKLET: rdp = %x, wdp = %x\n", rdp, wdp); */
size
=
wdp
-
rdp
;
if
(
size
<
0
)
size
+=
0x10000
;
...
...
@@ -321,5 +321,5 @@ void pdacf_tasklet(unsigned long private_data)
spin_lock
(
&
chip
->
reg_lock
);
}
spin_unlock
(
&
chip
->
reg_lock
);
/
/ printk("TASKLET: end\n");
/
* printk(KERN_DEBUG "TASKLET: end\n"); */
}
sound/sparc/amd7930.c
浏览文件 @
2ebfb8ee
...
...
@@ -954,7 +954,8 @@ static int __devinit snd_amd7930_create(struct snd_card *card,
amd
->
regs
=
of_ioremap
(
&
op
->
resource
[
0
],
0
,
resource_size
(
&
op
->
resource
[
0
]),
"amd7930"
);
if
(
!
amd
->
regs
)
{
snd_printk
(
"amd7930-%d: Unable to map chip registers.
\n
"
,
dev
);
snd_printk
(
KERN_ERR
"amd7930-%d: Unable to map chip registers.
\n
"
,
dev
);
return
-
EIO
;
}
...
...
@@ -962,7 +963,7 @@ static int __devinit snd_amd7930_create(struct snd_card *card,
if
(
request_irq
(
irq
,
snd_amd7930_interrupt
,
IRQF_DISABLED
|
IRQF_SHARED
,
"amd7930"
,
amd
))
{
snd_printk
(
"amd7930-%d: Unable to grab IRQ %d
\n
"
,
snd_printk
(
KERN_ERR
"amd7930-%d: Unable to grab IRQ %d
\n
"
,
dev
,
irq
);
snd_amd7930_free
(
amd
);
return
-
EBUSY
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录