diff options
| author | Atul Raut <araut@codeaurora.org> | 2016-06-01 18:32:44 -0700 |
|---|---|---|
| committer | Atul Raut <araut@codeaurora.org> | 2017-04-18 15:34:43 -0700 |
| commit | 6002e44f01ab26fcbdcb2090a44d2f027724577a (patch) | |
| tree | af0d77f97013470b42a2809b6d9e61ace62c64e6 | |
| parent | 393be0cabc5a2a224640279ea21ac9402919505b (diff) | |
soc: qcom: boot_marker: change module load order
boot_marker's routine place_marker used by module's
which start late in driver initialization at kernel boot
sequence hence required chaning its load order.
boot_marker module depends on boot_stat which load order
is subsys_initcall hence changing boot_marker as subsys
module.
CRs-Fixed: 1023644
Change-Id: I6c44d59d1899667f92d25211a2af4edde7130e15
Signed-off-by: Atul Raut <araut@codeaurora.org>
| -rw-r--r-- | drivers/soc/qcom/boot_marker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/qcom/boot_marker.c b/drivers/soc/qcom/boot_marker.c index 291bc9c952a1..35c6c9b80905 100644 --- a/drivers/soc/qcom/boot_marker.c +++ b/drivers/soc/qcom/boot_marker.c @@ -151,7 +151,7 @@ static int __init init_bootkpi(void) set_bootloader_stats(); return 0; } -module_init(init_bootkpi); +subsys_initcall(init_bootkpi); static void __exit exit_bootkpi(void) { |
