Commit 020861b5 authored by Andy Shevchenko's avatar Andy Shevchenko

pinctrl: cannonlake: Switch to use Intel pin control PM ops

The main driver conditionally exports the PM ops structure.
Switch this driver to use it instead of customly wrapped one.
Acked-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20231030120734.2831419-5-andriy.shevchenko@linux.intel.comSigned-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent 4cc4ff1b
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <linux/mod_devicetable.h> #include <linux/mod_devicetable.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/pm.h>
#include <linux/pinctrl/pinctrl.h> #include <linux/pinctrl/pinctrl.h>
...@@ -824,14 +825,12 @@ static const struct acpi_device_id cnl_pinctrl_acpi_match[] = { ...@@ -824,14 +825,12 @@ static const struct acpi_device_id cnl_pinctrl_acpi_match[] = {
}; };
MODULE_DEVICE_TABLE(acpi, cnl_pinctrl_acpi_match); MODULE_DEVICE_TABLE(acpi, cnl_pinctrl_acpi_match);
static INTEL_PINCTRL_PM_OPS(cnl_pinctrl_pm_ops);
static struct platform_driver cnl_pinctrl_driver = { static struct platform_driver cnl_pinctrl_driver = {
.probe = intel_pinctrl_probe_by_hid, .probe = intel_pinctrl_probe_by_hid,
.driver = { .driver = {
.name = "cannonlake-pinctrl", .name = "cannonlake-pinctrl",
.acpi_match_table = cnl_pinctrl_acpi_match, .acpi_match_table = cnl_pinctrl_acpi_match,
.pm = &cnl_pinctrl_pm_ops, .pm = pm_sleep_ptr(&intel_pinctrl_pm_ops),
}, },
}; };
module_platform_driver(cnl_pinctrl_driver); module_platform_driver(cnl_pinctrl_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment