[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240409120605.4138472-2-Pascal.FONTAIN@bachmann.info>
Date: Tue, 9 Apr 2024 14:06:04 +0200
From: Pascal FONTAIN <Pascal.FONTAIN@...hmann.info>
To: <linux-kernel@...r.kernel.org>, Arnd Bergmann <arnd@...db.de>, "Greg
Kroah-Hartman" <gregkh@...uxfoundation.org>
CC: <afd@...com>, Pascal Fontain <pascal.fontain@...hmann.info>
Subject: [PATCH v3 1/2] misc: sram: Move probe of sram subsystem
From: Pascal Fontain <pascal.fontain@...hmann.info>
The sram subsystem might use the dma-buf subsystem which only gets
initialized in subsys_initcall phase. Because of this we move the sram
initcall into the device phase.
Signed-off-by: Pascal Fontain <pascal.fontain@...hmann.info>
---
drivers/misc/sram.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/misc/sram.c b/drivers/misc/sram.c
index e248c0a8882f..632f90d9bcea 100644
--- a/drivers/misc/sram.c
+++ b/drivers/misc/sram.c
@@ -461,4 +461,4 @@ static int __init sram_init(void)
return platform_driver_register(&sram_driver);
}
-postcore_initcall(sram_init);
+device_initcall(sram_init);
--
2.39.2
Powered by blists - more mailing lists