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

Commit 8e444344 authored by Harshdeep Dhatt's avatar Harshdeep Dhatt
Browse files

interconnect: qcom: Change bcm voter initlevel



The interconnect devices require bcm voter to be initialized in
order to avoid unnecessary probe deferrals in the built-in configuration.

Change-Id: I67d5d1412a8962ad1750ddf7871cc34aa0ecfe19
Signed-off-by: default avatarHarshdeep Dhatt <hdhatt@codeaurora.org>
parent f27ee2ff
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -365,6 +365,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");