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

Commit b7e732fa authored by Bjorn Andersson's avatar Bjorn Andersson Committed by David S. Miller
Browse files

qrtr: Move to postcore_initcall



Registering qrtr with module_init makes the ability of typical platform
code to create AF_QIPCRTR socket during probe a matter of link order
luck. Moving qrtr to postcore_initcall() avoids this.

Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7fd07833
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1085,7 +1085,7 @@ static int __init qrtr_proto_init(void)

	return 0;
}
module_init(qrtr_proto_init);
postcore_initcall(qrtr_proto_init);

static void __exit qrtr_proto_fini(void)
{