mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
pinctrl: denverton: 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: Mika Westerberg <mika.westerberg@linux.intel.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Link: https://lore.kernel.org/r/20231030120734.2831419-7-andriy.shevchenko@linux.intel.com Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
a4f777ef30
commit
6dde85169a
@ -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>
|
||||
|
||||
@ -249,8 +250,6 @@ static const struct intel_pinctrl_soc_data dnv_soc_data = {
|
||||
.ncommunities = ARRAY_SIZE(dnv_communities),
|
||||
};
|
||||
|
||||
static INTEL_PINCTRL_PM_OPS(dnv_pinctrl_pm_ops);
|
||||
|
||||
static const struct acpi_device_id dnv_pinctrl_acpi_match[] = {
|
||||
{ "INTC3000", (kernel_ulong_t)&dnv_soc_data },
|
||||
{ }
|
||||
@ -268,7 +267,7 @@ static struct platform_driver dnv_pinctrl_driver = {
|
||||
.driver = {
|
||||
.name = "denverton-pinctrl",
|
||||
.acpi_match_table = dnv_pinctrl_acpi_match,
|
||||
.pm = &dnv_pinctrl_pm_ops,
|
||||
.pm = pm_sleep_ptr(&intel_pinctrl_pm_ops),
|
||||
},
|
||||
.id_table = dnv_pinctrl_platform_ids,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user