Commit a6a997ad authored by Peter Osterlund's avatar Peter Osterlund Committed by Linus Torvalds

[PATCH] pktcdvd: make two functions static

Make two needlessly global functions static.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarPeter Osterlund <petero2@telia.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent eefe1116
......@@ -2625,7 +2625,7 @@ static struct miscdevice pkt_misc = {
.fops = &pkt_ctl_fops
};
int pkt_init(void)
static int pkt_init(void)
{
int ret;
......@@ -2661,7 +2661,7 @@ int pkt_init(void)
return ret;
}
void pkt_exit(void)
static void pkt_exit(void)
{
remove_proc_entry("pktcdvd", proc_root_driver);
misc_deregister(&pkt_misc);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment