From: Alexandra Winter Date: Thu, 23 Oct 2025 15:06:36 +0000 (+0200) Subject: dibs: Use subsys_initcall() X-Git-Tag: v6.19-rc1~170^2~297 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=968822086b74dd0a3df693f9d179bd4fe508faf9;p=thirdparty%2Fkernel%2Flinux.git dibs: Use subsys_initcall() In the case of built-in modules, the order of module_init() calls are derived from the Makefiles. Use subsys_initcall() for the dibs module, to make sure dibs_init() is executed before dibs clients like smc and dibs devices like ism are initialized. So future dibs client or dibs device modules can use module_init() without the risk of getting the order in the Makefiles wrong. Reported-by: Mete Durlu Signed-off-by: Alexandra Winter Reviewed-by: Alexander Lobakin Link: https://patch.msgid.link/20251023150636.3995476-2-wintera@linux.ibm.com Signed-off-by: Paolo Abeni --- diff --git a/drivers/dibs/dibs_main.c b/drivers/dibs/dibs_main.c index b015578b4d2e3..dac14d843af73 100644 --- a/drivers/dibs/dibs_main.c +++ b/drivers/dibs/dibs_main.c @@ -271,5 +271,5 @@ static void __exit dibs_exit(void) class_destroy(dibs_class); } -module_init(dibs_init); +subsys_initcall(dibs_init); module_exit(dibs_exit);