Commit 042a6362 authored by Linus Walleij's avatar Linus Walleij
Browse files

pinctrl: mediatek: mt8186: Account for probe refactoring



The new MT8186 drive came in and the probe calls were
refactored at the same time. Fix it up. Fixes a build issue.

Cc: Guodong Liu <guodong.liu@mediatek.com>
Cc: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Reported-by: default avatarkernel test robot <lkp@intel.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 156f7217
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -1246,13 +1246,9 @@ static const struct mtk_pin_soc mt8186_data = {
};

static const struct of_device_id mt8186_pinctrl_of_match[] = {
	{ .compatible = "mediatek,mt8186-pinctrl", },
	{ .compatible = "mediatek,mt8186-pinctrl", .data = &mt8186_data },
	{ }
};
static int mt8186_pinctrl_probe(struct platform_device *pdev)
{
	return mtk_paris_pinctrl_probe(pdev, &mt8186_data);
}

static struct platform_driver mt8186_pinctrl_driver = {
	.driver = {
@@ -1260,7 +1256,7 @@ static struct platform_driver mt8186_pinctrl_driver = {
		.of_match_table = mt8186_pinctrl_of_match,
		.pm = &mtk_paris_pinctrl_pm_ops,
	},
	.probe = mt8186_pinctrl_probe,
	.probe = mtk_paris_pinctrl_probe,
};

static int __init mt8186_pinctrl_init(void)