pinctrl: meteorlake: Switch to use Intel pin control PM ops
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 30 Oct 2023 12:07:31 +0000 (14:07 +0200)
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 13 Nov 2023 11:33:28 +0000 (13:33 +0200)
The main driver conditionally exports the PM ops structure.
Switch this driver to use it instead of customly wrapped one.

Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20231030120734.2831419-15-andriy.shevchenko@linux.intel.com
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
drivers/pinctrl/intel/pinctrl-meteorlake.c

index 7ced2b402dce04a06127d4c1863a2a2b1d58c719..cc44890c6699dcffb14d5ccee205b89417cae5d5 100644 (file)
@@ -9,6 +9,7 @@
 #include <linux/mod_devicetable.h>
 #include <linux/module.h>
 #include <linux/platform_device.h>
+#include <linux/pm.h>
 
 #include <linux/pinctrl/pinctrl.h>
 
@@ -589,14 +590,12 @@ static const struct acpi_device_id mtl_pinctrl_acpi_match[] = {
 };
 MODULE_DEVICE_TABLE(acpi, mtl_pinctrl_acpi_match);
 
-static INTEL_PINCTRL_PM_OPS(mtl_pinctrl_pm_ops);
-
 static struct platform_driver mtl_pinctrl_driver = {
        .probe = intel_pinctrl_probe_by_hid,
        .driver = {
                .name = "meteorlake-pinctrl",
                .acpi_match_table = mtl_pinctrl_acpi_match,
-               .pm = &mtl_pinctrl_pm_ops,
+               .pm = pm_sleep_ptr(&intel_pinctrl_pm_ops),
        },
 };
 module_platform_driver(mtl_pinctrl_driver);