Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
7bd9db83
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
7bd9db83
编写于
5月 20, 2010
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'topic/nomm' into for-linus
上级
3374cd1a
55c63bd2
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
22 addition
and
8 deletion
+22
-8
sound/core/pcm_native.c
sound/core/pcm_native.c
+22
-8
未找到文件。
sound/core/pcm_native.c
浏览文件 @
7bd9db83
...
@@ -3440,14 +3440,28 @@ static int snd_pcm_hw_params_old_user(struct snd_pcm_substream *substream,
...
@@ -3440,14 +3440,28 @@ static int snd_pcm_hw_params_old_user(struct snd_pcm_substream *substream,
#endif
/* CONFIG_SND_SUPPORT_OLD_API */
#endif
/* CONFIG_SND_SUPPORT_OLD_API */
#ifndef CONFIG_MMU
#ifndef CONFIG_MMU
unsigned
long
dummy_get_unmapped_area
(
struct
file
*
file
,
unsigned
long
addr
,
static
unsigned
long
snd_pcm_get_unmapped_area
(
struct
file
*
file
,
unsigned
long
len
,
unsigned
long
pgoff
,
unsigned
long
addr
,
unsigned
long
len
,
unsigned
long
pgoff
,
unsigned
long
flags
)
unsigned
long
flags
)
{
{
return
0
;
struct
snd_pcm_file
*
pcm_file
=
file
->
private_data
;
struct
snd_pcm_substream
*
substream
=
pcm_file
->
substream
;
struct
snd_pcm_runtime
*
runtime
=
substream
->
runtime
;
unsigned
long
offset
=
pgoff
<<
PAGE_SHIFT
;
switch
(
offset
)
{
case
SNDRV_PCM_MMAP_OFFSET_STATUS
:
return
(
unsigned
long
)
runtime
->
status
;
case
SNDRV_PCM_MMAP_OFFSET_CONTROL
:
return
(
unsigned
long
)
runtime
->
control
;
default:
return
(
unsigned
long
)
runtime
->
dma_area
+
offset
;
}
}
}
#else
#else
# define
dummy
_get_unmapped_area NULL
# define
snd_pcm
_get_unmapped_area NULL
#endif
#endif
/*
/*
...
@@ -3467,7 +3481,7 @@ const struct file_operations snd_pcm_f_ops[2] = {
...
@@ -3467,7 +3481,7 @@ const struct file_operations snd_pcm_f_ops[2] = {
.
compat_ioctl
=
snd_pcm_ioctl_compat
,
.
compat_ioctl
=
snd_pcm_ioctl_compat
,
.
mmap
=
snd_pcm_mmap
,
.
mmap
=
snd_pcm_mmap
,
.
fasync
=
snd_pcm_fasync
,
.
fasync
=
snd_pcm_fasync
,
.
get_unmapped_area
=
dummy
_get_unmapped_area
,
.
get_unmapped_area
=
snd_pcm
_get_unmapped_area
,
},
},
{
{
.
owner
=
THIS_MODULE
,
.
owner
=
THIS_MODULE
,
...
@@ -3481,6 +3495,6 @@ const struct file_operations snd_pcm_f_ops[2] = {
...
@@ -3481,6 +3495,6 @@ const struct file_operations snd_pcm_f_ops[2] = {
.
compat_ioctl
=
snd_pcm_ioctl_compat
,
.
compat_ioctl
=
snd_pcm_ioctl_compat
,
.
mmap
=
snd_pcm_mmap
,
.
mmap
=
snd_pcm_mmap
,
.
fasync
=
snd_pcm_fasync
,
.
fasync
=
snd_pcm_fasync
,
.
get_unmapped_area
=
dummy
_get_unmapped_area
,
.
get_unmapped_area
=
snd_pcm
_get_unmapped_area
,
}
}
};
};
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录