Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
c037773c
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c037773c
编写于
3月 31, 2013
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rtl8192e: switch to proc_create()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
e3e7b40c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
31 deletion
+21
-31
drivers/staging/rtl8192e/rtllib_module.c
drivers/staging/rtl8192e/rtllib_module.c
+21
-31
未找到文件。
drivers/staging/rtl8192e/rtllib_module.c
浏览文件 @
c037773c
...
...
@@ -208,39 +208,34 @@ static int debug = \
;
static
struct
proc_dir_entry
*
rtllib_proc
;
static
int
show_debug_level
(
char
*
page
,
char
**
start
,
off_t
offset
,
int
count
,
int
*
eof
,
void
*
data
)
static
int
show_debug_level
(
struct
seq_file
*
m
,
void
*
v
)
{
return
s
nprintf
(
page
,
count
,
"0x%08X
\n
"
,
rtllib_debug_level
);
return
s
eq_printf
(
m
,
"0x%08X
\n
"
,
rtllib_debug_level
);
}
static
int
stor
e_debug_level
(
struct
file
*
file
,
const
char
__user
*
buffer
,
unsigned
long
count
,
void
*
data
)
static
ssize_t
writ
e_debug_level
(
struct
file
*
file
,
const
char
__user
*
buffer
,
size_t
count
,
loff_t
*
ppos
)
{
char
buf
[]
=
"0x00000000"
;
unsigned
long
len
=
min
((
unsigned
long
)
sizeof
(
buf
)
-
1
,
count
);
char
*
p
=
(
char
*
)
buf
;
unsigned
long
val
;
int
err
=
kstrtoul_from_user
(
buffer
,
count
,
0
,
&
val
);
if
(
err
)
return
err
;
rtllib_debug_level
=
val
;
return
count
;
}
if
(
copy_from_user
(
buf
,
buffer
,
len
))
return
count
;
buf
[
len
]
=
0
;
if
(
p
[
1
]
==
'x'
||
p
[
1
]
==
'X'
||
p
[
0
]
==
'x'
||
p
[
0
]
==
'X'
)
{
p
++
;
if
(
p
[
0
]
==
'x'
||
p
[
0
]
==
'X'
)
p
++
;
val
=
simple_strtoul
(
p
,
&
p
,
16
);
}
else
val
=
simple_strtoul
(
p
,
&
p
,
10
);
if
(
p
==
buf
)
printk
(
KERN_INFO
DRV_NAME
": %s is not in hex or decimal form.
\n
"
,
buf
);
else
rtllib_debug_level
=
val
;
return
strnlen
(
buf
,
count
);
static
int
open_debug_level
(
struct
inode
*
inode
,
struct
file
*
file
)
{
return
single_open
(
file
,
show_debug_level
,
NULL
);
}
static
const
struct
file_operations
fops
=
{
.
open
=
open_debug_level
,
.
read
=
seq_read
,
.
llseek
=
seq_lseek
,
.
write
=
write_debug_level
};
int
__init
rtllib_init
(
void
)
{
struct
proc_dir_entry
*
e
;
...
...
@@ -252,17 +247,12 @@ int __init rtllib_init(void)
" proc directory
\n
"
);
return
-
EIO
;
}
e
=
create_proc_entry
(
"debug_level"
,
S_IFREG
|
S_IRUGO
|
S_IWUSR
,
rtllib_proc
);
e
=
proc_create
(
"debug_level"
,
S_IRUGO
|
S_IWUSR
,
rtllib_proc
,
&
fops
);
if
(
!
e
)
{
remove_proc_entry
(
DRV_NAME
,
init_net
.
proc_net
);
rtllib_proc
=
NULL
;
return
-
EIO
;
}
e
->
read_proc
=
show_debug_level
;
e
->
write_proc
=
store_debug_level
;
e
->
data
=
NULL
;
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录