Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0b114078 authored by Adrian Bunk's avatar Adrian Bunk Committed by Jeff Garzik
Browse files

make hplance_{init,cleanup}_module() static



This patch makes the needlessly global hplance_{init,cleanup}_module()
static.

Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 3cacd2a1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -220,12 +220,12 @@ static int hplance_close(struct net_device *dev)
        return 0;
}

int __init hplance_init_module(void)
static int __init hplance_init_module(void)
{
	return dio_register_driver(&hplance_driver);
}

void __exit hplance_cleanup_module(void)
static void __exit hplance_cleanup_module(void)
{
        dio_unregister_driver(&hplance_driver);
}