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

Commit afdadc06 authored by Linus Walleij's avatar Linus Walleij
Browse files

gpio: staticize xway_stp_init()



This initcall is only called from the driver itself, staticize it.

Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 3f97d5fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -292,7 +292,7 @@ static struct platform_driver xway_stp_driver = {
	},
	},
};
};


int __init xway_stp_init(void)
static int __init xway_stp_init(void)
{
{
	return platform_driver_register(&xway_stp_driver);
	return platform_driver_register(&xway_stp_driver);
}
}