Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
b0fdfebb
Commit
b0fdfebb
authored
Oct 27, 2005
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] INPUT: remove the input_class structure, as it is unused.
Signed-off-by:
Greg Kroah-Hartman
<
gregkh@suse.de
>
parent
629b77a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
16 deletions
+3
-16
drivers/input/input.c
drivers/input/input.c
+3
-15
include/linux/input.h
include/linux/input.h
+0
-1
No files found.
drivers/input/input.c
View file @
b0fdfebb
...
...
@@ -39,7 +39,6 @@ EXPORT_SYMBOL(input_close_device);
EXPORT_SYMBOL
(
input_accept_process
);
EXPORT_SYMBOL
(
input_flush_device
);
EXPORT_SYMBOL
(
input_event
);
EXPORT_SYMBOL
(
input_class
);
EXPORT_SYMBOL_GPL
(
input_dev_class
);
#define INPUT_DEVICES 256
...
...
@@ -927,8 +926,6 @@ static struct file_operations input_fops = {
.
open
=
input_open_file
,
};
struct
class
*
input_class
;
static
int
__init
input_init
(
void
)
{
int
err
;
...
...
@@ -939,27 +936,19 @@ static int __init input_init(void)
return
err
;
}
input_class
=
class_create
(
THIS_MODULE
,
"input"
);
if
(
IS_ERR
(
input_class
))
{
printk
(
KERN_ERR
"input: unable to register input class
\n
"
);
err
=
PTR_ERR
(
input_class
);
goto
fail1
;
}
err
=
input_proc_init
();
if
(
err
)
goto
fail
2
;
goto
fail
1
;
err
=
register_chrdev
(
INPUT_MAJOR
,
"input"
,
&
input_fops
);
if
(
err
)
{
printk
(
KERN_ERR
"input: unable to register char major %d"
,
INPUT_MAJOR
);
goto
fail
3
;
goto
fail
2
;
}
return
0
;
fail3:
input_proc_exit
();
fail2:
class_destroy
(
input_class
);
fail2:
input_proc_exit
();
fail1:
class_unregister
(
&
input_dev_class
);
return
err
;
}
...
...
@@ -968,7 +957,6 @@ static void __exit input_exit(void)
{
input_proc_exit
();
unregister_chrdev
(
INPUT_MAJOR
,
"input"
);
class_destroy
(
input_class
);
class_unregister
(
&
input_dev_class
);
}
...
...
include/linux/input.h
View file @
b0fdfebb
...
...
@@ -1074,7 +1074,6 @@ static inline void input_set_abs_params(struct input_dev *dev, int axis, int min
dev
->
absbit
[
LONG
(
axis
)]
|=
BIT
(
axis
);
}
extern
struct
class
*
input_class
;
extern
struct
class
input_dev_class
;
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment