Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
68c2a160
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
68c2a160
编写于
9月 14, 2006
作者:
D
Dmitry Torokhov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Input: remove cruft that was needed for transition to sysfs
Signed-off-by:
N
Dmitry Torokhov
<
dtor@mail.ru
>
上级
655816e4
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
0 addition
and
19 deletion
+0
-19
drivers/input/input.c
drivers/input/input.c
+0
-10
include/linux/input.h
include/linux/input.h
+0
-9
未找到文件。
drivers/input/input.c
浏览文件 @
68c2a160
...
...
@@ -906,7 +906,6 @@ struct input_dev *input_allocate_device(void)
dev
=
kzalloc
(
sizeof
(
struct
input_dev
),
GFP_KERNEL
);
if
(
dev
)
{
dev
->
dynalloc
=
1
;
dev
->
cdev
.
class
=
&
input_class
;
class_device_initialize
(
&
dev
->
cdev
);
mutex_init
(
&
dev
->
mutex
);
...
...
@@ -942,13 +941,6 @@ int input_register_device(struct input_dev *dev)
const
char
*
path
;
int
error
;
if
(
!
dev
->
dynalloc
)
{
printk
(
KERN_WARNING
"input: device %s is statically allocated, will not register
\n
"
"Please convert to input_allocate_device() or contact dtor_core@ameritech.net
\n
"
,
dev
->
name
?
dev
->
name
:
"<Unknown>"
);
return
-
EINVAL
;
}
set_bit
(
EV_SYN
,
dev
->
evbit
);
/*
...
...
@@ -964,10 +956,8 @@ int input_register_device(struct input_dev *dev)
dev
->
rep
[
REP_PERIOD
]
=
33
;
}
INIT_LIST_HEAD
(
&
dev
->
h_list
);
list_add_tail
(
&
dev
->
node
,
&
input_dev_list
);
dev
->
cdev
.
class
=
&
input_class
;
snprintf
(
dev
->
cdev
.
class_id
,
sizeof
(
dev
->
cdev
.
class_id
),
"input%ld"
,
(
unsigned
long
)
atomic_inc_return
(
&
input_no
)
-
1
);
...
...
include/linux/input.h
浏览文件 @
68c2a160
...
...
@@ -978,9 +978,6 @@ struct input_dev {
unsigned
int
users
;
struct
class_device
cdev
;
struct
device
*
dev
;
/* will be removed soon */
int
dynalloc
;
/* temporarily */
struct
list_head
h_list
;
struct
list_head
node
;
...
...
@@ -1093,12 +1090,6 @@ struct input_handle {
#define to_handle(n) container_of(n,struct input_handle,d_node)
#define to_handle_h(n) container_of(n,struct input_handle,h_node)
static
inline
void
init_input_dev
(
struct
input_dev
*
dev
)
{
INIT_LIST_HEAD
(
&
dev
->
h_list
);
INIT_LIST_HEAD
(
&
dev
->
node
);
}
struct
input_dev
*
input_allocate_device
(
void
);
void
input_free_device
(
struct
input_dev
*
dev
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录