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

Commit 6da1fc6d authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "interconnect: qcom: Change bcm voter initlevel"

parents 496291b5 8e444344
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -391,6 +391,18 @@ static struct platform_driver qcom_icc_bcm_voter_driver = {
		.of_match_table = bcm_voter_of_match,
	},
};
module_platform_driver(qcom_icc_bcm_voter_driver);

static int __init bcm_voter_driver_init(void)
{
	return platform_driver_register(&qcom_icc_bcm_voter_driver);
}
core_initcall(bcm_voter_driver_init);

static void __exit bcm_voter_driver_exit(void)
{
	platform_driver_unregister(&qcom_icc_bcm_voter_driver);
}
module_exit(bcm_voter_driver_exit);

MODULE_DESCRIPTION("QTI BCM Voter interconnect driver");
MODULE_LICENSE("GPL v2");