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
3fa99ba8
Commit
3fa99ba8
authored
Aug 01, 2003
by
Randy Dunlap
Committed by
Greg Kroah-Hartman
Aug 01, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] janitor: make serio init/exit static
From: Daniele Bellucci <bellucda@tiscali.it>
parent
dcafa048
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
drivers/input/serio/serio.c
drivers/input/serio/serio.c
+6
-2
No files found.
drivers/input/serio/serio.c
View file @
3fa99ba8
...
...
@@ -26,6 +26,10 @@
* Should you need to contact me, the author, you can do so either by
* e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
* Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
*
* Changes:
* 20 Jul. 2003 Daniele Bellucci <bellucda@tiscali.it>
* Minor cleanups.
*/
#include <linux/stddef.h>
...
...
@@ -213,7 +217,7 @@ void serio_close(struct serio *serio)
serio
->
dev
=
NULL
;
}
in
t
serio_init
(
void
)
static
int
__ini
t
serio_init
(
void
)
{
int
pid
;
...
...
@@ -230,7 +234,7 @@ int serio_init(void)
return
0
;
}
void
serio_exit
(
void
)
static
void
__exit
serio_exit
(
void
)
{
kill_proc
(
serio_pid
,
SIGTERM
,
1
);
wait_for_completion
(
&
serio_exited
);
...
...
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