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

Commit 6002e44f authored by Atul Raut's avatar Atul Raut
Browse files

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: default avatarAtul Raut <araut@codeaurora.org>
parent 393be0ca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)
{