Skip to content
Snippets Groups Projects
Commit 5d3f3331 authored by Wolfram Sang's avatar Wolfram Sang Committed by Ben Dooks
Browse files

[PATCH] i2c-imx: make bus available early


As I2C is used by PMICs also, make the busses available early via
subsys_initcall().

Signed-off-by: default avatarWolfram Sang <w.sang@pengutronix.de>
Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
parent b0999cc5
No related branches found
No related tags found
No related merge requests found
......@@ -609,13 +609,12 @@ static int __init i2c_adap_imx_init(void)
{
return platform_driver_probe(&i2c_imx_driver, i2c_imx_probe);
}
subsys_initcall(i2c_adap_imx_init);
static void __exit i2c_adap_imx_exit(void)
{
platform_driver_unregister(&i2c_imx_driver);
}
module_init(i2c_adap_imx_init);
module_exit(i2c_adap_imx_exit);
MODULE_LICENSE("GPL");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment