Commit 5d5e83f9 authored by Andy Shevchenko's avatar Andy Shevchenko

pinctrl: lewisburg: 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-14-andriy.shevchenko@linux.intel.comSigned-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent 8e5f0013
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,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>
...@@ -301,8 +302,6 @@ static const struct intel_pinctrl_soc_data lbg_soc_data = { ...@@ -301,8 +302,6 @@ static const struct intel_pinctrl_soc_data lbg_soc_data = {
.ncommunities = ARRAY_SIZE(lbg_communities), .ncommunities = ARRAY_SIZE(lbg_communities),
}; };
static INTEL_PINCTRL_PM_OPS(lbg_pinctrl_pm_ops);
static const struct acpi_device_id lbg_pinctrl_acpi_match[] = { static const struct acpi_device_id lbg_pinctrl_acpi_match[] = {
{ "INT3536", (kernel_ulong_t)&lbg_soc_data }, { "INT3536", (kernel_ulong_t)&lbg_soc_data },
{ } { }
...@@ -314,7 +313,7 @@ static struct platform_driver lbg_pinctrl_driver = { ...@@ -314,7 +313,7 @@ static struct platform_driver lbg_pinctrl_driver = {
.driver = { .driver = {
.name = "lewisburg-pinctrl", .name = "lewisburg-pinctrl",
.acpi_match_table = lbg_pinctrl_acpi_match, .acpi_match_table = lbg_pinctrl_acpi_match,
.pm = &lbg_pinctrl_pm_ops, .pm = pm_sleep_ptr(&intel_pinctrl_pm_ops),
}, },
}; };
module_platform_driver(lbg_pinctrl_driver); module_platform_driver(lbg_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