mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
pinctrl: rockchip: make driver be tristate module
Make pinctrl-rockchip driver to be tristate module, support to build as a module, this is useful for GKI. Reviewed-by: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Jianqun Xu <jay.xu@rock-chips.com> Link: https://lore.kernel.org/r/20210305003907.1692515-3-jay.xu@rock-chips.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
25fda51ca3
commit
be786ac5a6
@ -208,7 +208,7 @@ config PINCTRL_OXNAS
|
||||
select MFD_SYSCON
|
||||
|
||||
config PINCTRL_ROCKCHIP
|
||||
bool
|
||||
tristate "Rockchip gpio and pinctrl driver"
|
||||
depends on OF
|
||||
select GPIOLIB
|
||||
select PINMUX
|
||||
|
@ -16,10 +16,12 @@
|
||||
*/
|
||||
|
||||
#include <linux/init.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/bitops.h>
|
||||
#include <linux/gpio/driver.h>
|
||||
#include <linux/of_device.h>
|
||||
#include <linux/of_address.h>
|
||||
#include <linux/of_irq.h>
|
||||
#include <linux/pinctrl/machine.h>
|
||||
@ -4257,3 +4259,14 @@ static int __init rockchip_pinctrl_drv_register(void)
|
||||
return platform_driver_register(&rockchip_pinctrl_driver);
|
||||
}
|
||||
postcore_initcall(rockchip_pinctrl_drv_register);
|
||||
|
||||
static void __exit rockchip_pinctrl_drv_unregister(void)
|
||||
{
|
||||
platform_driver_unregister(&rockchip_pinctrl_driver);
|
||||
}
|
||||
module_exit(rockchip_pinctrl_drv_unregister);
|
||||
|
||||
MODULE_DESCRIPTION("ROCKCHIP Pin Controller Driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_ALIAS("platform:pinctrl-rockchip");
|
||||
MODULE_DEVICE_TABLE(of, rockchip_pinctrl_dt_match);
|
||||
|
Loading…
Reference in New Issue
Block a user