Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9080e77b authored by Andy Shevchenko's avatar Andy Shevchenko
Browse files

pinctrl: cannonlake: Get rid of unneeded ->probe() stub



The local ->probe() stub does nothing except calling
a generic Intel pin control probe function. Thus,
it's not needed and generic function may be called directly.

Convert the driver accordingly.

Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
parent bdc2bc72
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -833,15 +833,10 @@ static const struct acpi_device_id cnl_pinctrl_acpi_match[] = {
};
MODULE_DEVICE_TABLE(acpi, cnl_pinctrl_acpi_match);

static int cnl_pinctrl_probe(struct platform_device *pdev)
{
	return intel_pinctrl_probe_by_hid(pdev);
}

static INTEL_PINCTRL_PM_OPS(cnl_pinctrl_pm_ops);

static struct platform_driver cnl_pinctrl_driver = {
	.probe = cnl_pinctrl_probe,
	.probe = intel_pinctrl_probe_by_hid,
	.driver = {
		.name = "cannonlake-pinctrl",
		.acpi_match_table = cnl_pinctrl_acpi_match,