Skip to content
/ linux Public

Commit e7e5f19

Browse files
ADESTMSasha Levin
authored andcommitted
dmaengine: stm32-dma3: use module_platform_driver
[ Upstream commit 0d41ed4 ] Without module_platform_driver(), stm32-dma3 doesn't have a module_exit procedure. Once stm32-dma3 module is inserted, it can't be removed, marked busy. Use module_platform_driver() instead of subsys_initcall() to register (insmod) and unregister (rmmod) stm32-dma3 driver. Reviewed-by: Eugen Hristev <eugen.hristev@linaro.org> Signed-off-by: Amelie Delaunay <amelie.delaunay@foss.st.com> Link: https://patch.msgid.link/20251121-dma3_improv-v2-1-76a207b13ea6@foss.st.com Signed-off-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 59e7707 commit e7e5f19

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

drivers/dma/stm32/stm32-dma3.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1914,12 +1914,7 @@ static struct platform_driver stm32_dma3_driver = {
19141914
},
19151915
};
19161916

1917-
static int __init stm32_dma3_init(void)
1918-
{
1919-
return platform_driver_register(&stm32_dma3_driver);
1920-
}
1921-
1922-
subsys_initcall(stm32_dma3_init);
1917+
module_platform_driver(stm32_dma3_driver);
19231918

19241919
MODULE_DESCRIPTION("STM32 DMA3 controller driver");
19251920
MODULE_AUTHOR("Amelie Delaunay <amelie.delaunay@foss.st.com>");

0 commit comments

Comments
 (0)