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

Commit f36861d5 authored by Robert Reif's avatar Robert Reif Committed by David S. Miller
Browse files

sparc: tcx.c make tcx_init and tcx_exit static



Make tcx_init and tcx_exit static.

Signed-off-by: default avatarRobert Reif <reif@earthlink.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a2fb0ce7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -527,7 +527,7 @@ static struct of_platform_driver tcx_driver = {
	.remove		= __devexit_p(tcx_remove),
};

int __init tcx_init(void)
static int __init tcx_init(void)
{
	if (fb_get_options("tcxfb", NULL))
		return -ENODEV;
@@ -535,7 +535,7 @@ int __init tcx_init(void)
	return of_register_driver(&tcx_driver, &of_bus_type);
}

void __exit tcx_exit(void)
static void __exit tcx_exit(void)
{
	of_unregister_driver(&tcx_driver);
}