]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
pinctrl: tegra: Export tegra_pinctrl_probe()
authorPrathamesh Shete <pshete@nvidia.com>
Mon, 27 Apr 2026 13:42:26 +0000 (13:42 +0000)
committerLinus Walleij <linusw@kernel.org>
Wed, 27 May 2026 12:03:07 +0000 (14:03 +0200)
Export tegra_pinctrl_probe() to allow SoC-specific Tegra pinctrl drivers
built as modules to use the common probe path.

Signed-off-by: Prathamesh Shete <pshete@nvidia.com>
Reviewed-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Linus Walleij <linusw@kernel.org>
drivers/pinctrl/tegra/pinctrl-tegra.c

index bac2adeb5c63b1787e9189948bda5ef8fffbcff3..3f58f7db525f7459c802e47ea23669ae98e823a4 100644 (file)
@@ -13,6 +13,7 @@
 #include <linux/err.h>
 #include <linux/init.h>
 #include <linux/io.h>
+#include <linux/module.h>
 #include <linux/of.h>
 #include <linux/platform_device.h>
 #include <linux/seq_file.h>
@@ -936,3 +937,4 @@ int tegra_pinctrl_probe(struct platform_device *pdev,
 
        return 0;
 }
+EXPORT_SYMBOL_GPL(tegra_pinctrl_probe);