pinctrl: imx8mq: Support building as module
Change configuration to "tristate", add module device table, author, description and license to support building i.MX8MQ 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-6-git-send-email-Anson.Huang@nxp.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
4bb63d2166
commit
e38b6bb211
|
@ -145,7 +145,7 @@ config PINCTRL_IMX8MP
|
|||
Say Y here to enable the imx8mp pinctrl driver
|
||||
|
||||
config PINCTRL_IMX8MQ
|
||||
bool "IMX8MQ pinctrl driver"
|
||||
tristate "IMX8MQ pinctrl driver"
|
||||
depends on ARCH_MXC
|
||||
select PINCTRL_IMX
|
||||
help
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#include <linux/err.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/of_device.h>
|
||||
#include <linux/pinctrl/pinctrl.h>
|
||||
|
@ -329,6 +330,7 @@ static const struct of_device_id imx8mq_pinctrl_of_match[] = {
|
|||
{ .compatible = "fsl,imx8mq-iomuxc", .data = &imx8mq_pinctrl_info, },
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, imx8mq_pinctrl_of_match);
|
||||
|
||||
static int imx8mq_pinctrl_probe(struct platform_device *pdev)
|
||||
{
|
||||
|
@ -350,3 +352,7 @@ static int __init imx8mq_pinctrl_init(void)
|
|||
return platform_driver_register(&imx8mq_pinctrl_driver);
|
||||
}
|
||||
arch_initcall(imx8mq_pinctrl_init);
|
||||
|
||||
MODULE_AUTHOR("Lucas Stach <l.stach@pengutronix.de>");
|
||||
MODULE_DESCRIPTION("NXP i.MX8MQ pinctrl driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
|
Loading…
Reference in New Issue