Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
f3cf2673
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看板
提交
f3cf2673
编写于
1月 13, 2007
作者:
K
Kyle McMartin
提交者:
Kyle McMartin
2月 17, 2007
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[PARISC] generate modalias for parisc_device_id tables
Signed-off-by:
N
Kyle McMartin
<
kyle@parisc-linux.org
>
上级
f2439b26
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
22 addition
and
0 deletion
+22
-0
scripts/mod/file2alias.c
scripts/mod/file2alias.c
+22
-0
未找到文件。
scripts/mod/file2alias.c
浏览文件 @
f3cf2673
...
...
@@ -452,6 +452,24 @@ static int do_eisa_entry(const char *filename, struct eisa_device_id *eisa,
return
1
;
}
/* Looks like: parisc:tNhvNrevNsvN */
static
int
do_parisc_entry
(
const
char
*
filename
,
struct
parisc_device_id
*
id
,
char
*
alias
)
{
id
->
hw_type
=
TO_NATIVE
(
id
->
hw_type
);
id
->
hversion
=
TO_NATIVE
(
id
->
hversion
);
id
->
hversion_rev
=
TO_NATIVE
(
id
->
hversion_rev
);
id
->
sversion
=
TO_NATIVE
(
id
->
sversion
);
strcpy
(
alias
,
"parisc:"
);
ADD
(
alias
,
"t"
,
id
->
hw_type
!=
HWTYPE_ANY_ID
,
id
->
hw_type
);
ADD
(
alias
,
"hv"
,
id
->
hversion
!=
HVERSION_ANY_ID
,
id
->
hversion
);
ADD
(
alias
,
"rev"
,
id
->
hversion_rev
!=
HVERSION_REV_ANY_ID
,
id
->
hversion_rev
);
ADD
(
alias
,
"sv"
,
id
->
sversion
!=
SVERSION_ANY_ID
,
id
->
sversion
);
return
1
;
}
/* Ignore any prefix, eg. v850 prepends _ */
static
inline
int
sym_is
(
const
char
*
symbol
,
const
char
*
name
)
{
...
...
@@ -559,6 +577,10 @@ void handle_moddevtable(struct module *mod, struct elf_info *info,
do_table
(
symval
,
sym
->
st_size
,
sizeof
(
struct
eisa_device_id
),
"eisa"
,
do_eisa_entry
,
mod
);
else
if
(
sym_is
(
symname
,
"__mod_parisc_device_table"
))
do_table
(
symval
,
sym
->
st_size
,
sizeof
(
struct
parisc_device_id
),
"parisc"
,
do_parisc_entry
,
mod
);
}
/* Now add out buffered information to the generated C source */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录