Commit 9a976cd2 authored by Anson Huang's avatar Anson Huang Committed by Shawn Guo

clk: imx8m: Support module build

Change configuration to "tristate", add module author, description
and license to support building i.MX8M SoCs clock driver as module.
Signed-off-by: default avatarAnson Huang <Anson.Huang@nxp.com>
Reviewed-by: default avatarDong Aisheng <aisheng.dong@nxp.com>
Reviewed-by: default avatarStephen Boyd <sboyd@kernel.org>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent f1f018dc
...@@ -69,29 +69,29 @@ config CLK_VF610 ...@@ -69,29 +69,29 @@ config CLK_VF610
select MXC_CLK select MXC_CLK
config CLK_IMX8MM config CLK_IMX8MM
bool "IMX8MM CCM Clock Driver" tristate "IMX8MM CCM Clock Driver"
depends on ARCH_MXC depends on ARCH_MXC || COMPILE_TEST
select MXC_CLK select MXC_CLK
help help
Build the driver for i.MX8MM CCM Clock Driver Build the driver for i.MX8MM CCM Clock Driver
config CLK_IMX8MN config CLK_IMX8MN
bool "IMX8MN CCM Clock Driver" tristate "IMX8MN CCM Clock Driver"
depends on ARCH_MXC depends on ARCH_MXC || COMPILE_TEST
select MXC_CLK select MXC_CLK
help help
Build the driver for i.MX8MN CCM Clock Driver Build the driver for i.MX8MN CCM Clock Driver
config CLK_IMX8MP config CLK_IMX8MP
bool "IMX8MP CCM Clock Driver" tristate "IMX8MP CCM Clock Driver"
depends on ARCH_MXC depends on ARCH_MXC || COMPILE_TEST
select MXC_CLK select MXC_CLK
help help
Build the driver for i.MX8MP CCM Clock Driver Build the driver for i.MX8MP CCM Clock Driver
config CLK_IMX8MQ config CLK_IMX8MQ
bool "IMX8MQ CCM Clock Driver" tristate "IMX8MQ CCM Clock Driver"
depends on ARCH_MXC depends on ARCH_MXC || COMPILE_TEST
select MXC_CLK select MXC_CLK
help help
Build the driver for i.MX8MQ CCM Clock Driver Build the driver for i.MX8MQ CCM Clock Driver
......
...@@ -657,3 +657,7 @@ static struct platform_driver imx8mm_clk_driver = { ...@@ -657,3 +657,7 @@ static struct platform_driver imx8mm_clk_driver = {
}, },
}; };
module_platform_driver(imx8mm_clk_driver); module_platform_driver(imx8mm_clk_driver);
MODULE_AUTHOR("Bai Ping <ping.bai@nxp.com>");
MODULE_DESCRIPTION("NXP i.MX8MM clock driver");
MODULE_LICENSE("GPL v2");
...@@ -608,3 +608,7 @@ static struct platform_driver imx8mn_clk_driver = { ...@@ -608,3 +608,7 @@ static struct platform_driver imx8mn_clk_driver = {
}, },
}; };
module_platform_driver(imx8mn_clk_driver); module_platform_driver(imx8mn_clk_driver);
MODULE_AUTHOR("Anson Huang <Anson.Huang@nxp.com>");
MODULE_DESCRIPTION("NXP i.MX8MN clock driver");
MODULE_LICENSE("GPL v2");
...@@ -773,3 +773,7 @@ static struct platform_driver imx8mp_clk_driver = { ...@@ -773,3 +773,7 @@ static struct platform_driver imx8mp_clk_driver = {
}, },
}; };
module_platform_driver(imx8mp_clk_driver); module_platform_driver(imx8mp_clk_driver);
MODULE_AUTHOR("Anson Huang <Anson.Huang@nxp.com>");
MODULE_DESCRIPTION("NXP i.MX8MP clock driver");
MODULE_LICENSE("GPL v2");
...@@ -643,3 +643,7 @@ static struct platform_driver imx8mq_clk_driver = { ...@@ -643,3 +643,7 @@ static struct platform_driver imx8mq_clk_driver = {
}, },
}; };
module_platform_driver(imx8mq_clk_driver); module_platform_driver(imx8mq_clk_driver);
MODULE_AUTHOR("Abel Vesa <abel.vesa@nxp.com>");
MODULE_DESCRIPTION("NXP i.MX8MQ clock driver");
MODULE_LICENSE("GPL v2");
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