pinctrl: imx8mm: Support building as module
Change configuration to "tristate", add module device table, author, description and license to support building i.MX8MM pinctrl driver as module. Signed-off-by: Anson Huang <Anson.Huang@nxp.com> Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com> Link: https://lore.kernel.org/r/1592979844-18833-4-git-send-email-Anson.Huang@nxp.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
0adbfcee61
commit
a302b0e100
|
@ -124,7 +124,7 @@ config PINCTRL_IMX7ULP
|
|||
Say Y here to enable the imx7ulp pinctrl driver
|
||||
|
||||
config PINCTRL_IMX8MM
|
||||
bool "IMX8MM pinctrl driver"
|
||||
tristate "IMX8MM pinctrl driver"
|
||||
depends on ARCH_MXC
|
||||
select PINCTRL_IMX
|
||||
help
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
#include <linux/err.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/of_device.h>
|
||||
#include <linux/pinctrl/pinctrl.h>
|
||||
#include <linux/platform_device.h>
|
||||
|
@ -326,6 +327,7 @@ static const struct of_device_id imx8mm_pinctrl_of_match[] = {
|
|||
{ .compatible = "fsl,imx8mm-iomuxc", .data = &imx8mm_pinctrl_info, },
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, imx8mm_pinctrl_of_match);
|
||||
|
||||
static int imx8mm_pinctrl_probe(struct platform_device *pdev)
|
||||
{
|
||||
|
@ -346,3 +348,7 @@ static int __init imx8mm_pinctrl_init(void)
|
|||
return platform_driver_register(&imx8mm_pinctrl_driver);
|
||||
}
|
||||
arch_initcall(imx8mm_pinctrl_init);
|
||||
|
||||
MODULE_AUTHOR("Bai Ping <ping.bai@nxp.com>");
|
||||
MODULE_DESCRIPTION("NXP i.MX8MM pinctrl driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
|
Loading…
Reference in New Issue