Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
linux
Commits
3fa99ba8
Commit
3fa99ba8
authored
21 years ago
by
Randy Dunlap
Committed by
Greg Kroah-Hartman
21 years ago
Browse files
Options
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
;
}
i
n
t
serio_init
(
void
)
static
int
__in
it
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
);
...
...
This diff is collapsed.
Click to expand it.
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