Commit 74303598 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

[PATCH] W1: removed some unneeded global symbols from the w1_smem module.

Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 222debb2
......@@ -104,12 +104,12 @@ static struct w1_family w1_smem_family = {
.fops = &w1_smem_fops,
};
int __init w1_smem_init(void)
static int __init w1_smem_init(void)
{
return w1_register_family(&w1_smem_family);
}
void __exit w1_smem_fini(void)
static void __exit w1_smem_fini(void)
{
w1_unregister_family(&w1_smem_family);
}
......
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