Commit b6b95858 authored by Clément Léger's avatar Clément Léger Committed by Philipp Zabel

reset: microchip-sparx5: allow building as a module

Set RESET_MCHP_SPARX5 as a tristate and add MODULE_DEVICE_TABLE() to
allow building this driver as a module.
Signed-off-by: default avatarClément Léger <clement.leger@bootlin.com>
Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Link: https://lore.kernel.org/r/20220617103730.490588-1-clement.leger@bootlin.com
parent f2906aa8
...@@ -115,7 +115,7 @@ config RESET_LPC18XX ...@@ -115,7 +115,7 @@ config RESET_LPC18XX
This enables the reset controller driver for NXP LPC18xx/43xx SoCs. This enables the reset controller driver for NXP LPC18xx/43xx SoCs.
config RESET_MCHP_SPARX5 config RESET_MCHP_SPARX5
bool "Microchip Sparx5 reset driver" tristate "Microchip Sparx5 reset driver"
depends on ARCH_SPARX5 || SOC_LAN966 || COMPILE_TEST depends on ARCH_SPARX5 || SOC_LAN966 || COMPILE_TEST
default y if SPARX5_SWITCH default y if SPARX5_SWITCH
select MFD_SYSCON select MFD_SYSCON
......
...@@ -149,6 +149,7 @@ static const struct of_device_id mchp_sparx5_reset_of_match[] = { ...@@ -149,6 +149,7 @@ static const struct of_device_id mchp_sparx5_reset_of_match[] = {
}, },
{ } { }
}; };
MODULE_DEVICE_TABLE(of, mchp_sparx5_reset_of_match);
static struct platform_driver mchp_sparx5_reset_driver = { static struct platform_driver mchp_sparx5_reset_driver = {
.probe = mchp_sparx5_reset_probe, .probe = mchp_sparx5_reset_probe,
...@@ -158,12 +159,7 @@ static struct platform_driver mchp_sparx5_reset_driver = { ...@@ -158,12 +159,7 @@ static struct platform_driver mchp_sparx5_reset_driver = {
}, },
}; };
static int __init mchp_sparx5_reset_init(void) module_platform_driver(mchp_sparx5_reset_driver);
{
return platform_driver_register(&mchp_sparx5_reset_driver);
}
postcore_initcall(mchp_sparx5_reset_init);
MODULE_DESCRIPTION("Microchip Sparx5 switch reset driver"); MODULE_DESCRIPTION("Microchip Sparx5 switch reset driver");
MODULE_AUTHOR("Steen Hegelund <steen.hegelund@microchip.com>"); MODULE_AUTHOR("Steen Hegelund <steen.hegelund@microchip.com>");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment