platform/chrome: cros_hps_i2c: Replace deprecated UNIVERSAL_DEV_PM_OPS()
The UNIVERSAL_DEV_PM_OPS() macro is deprecated. Replace it. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20240403105502.558351-1-andriy.shevchenko@linux.intel.com Signed-off-by: Tzung-Bi Shih <tzungbi@kernel.org>
This commit is contained in:
committed by
Tzung-Bi Shih
parent
62bbe55565
commit
945c7c6d17
@@ -126,7 +126,7 @@ static int hps_resume(struct device *dev)
|
||||
hps_set_power(hps, true);
|
||||
return 0;
|
||||
}
|
||||
static UNIVERSAL_DEV_PM_OPS(hps_pm_ops, hps_suspend, hps_resume, NULL);
|
||||
static DEFINE_RUNTIME_DEV_PM_OPS(hps_pm_ops, hps_suspend, hps_resume, NULL);
|
||||
|
||||
static const struct i2c_device_id hps_i2c_id[] = {
|
||||
{ "cros-hps", 0 },
|
||||
@@ -148,7 +148,7 @@ static struct i2c_driver hps_i2c_driver = {
|
||||
.id_table = hps_i2c_id,
|
||||
.driver = {
|
||||
.name = "cros-hps",
|
||||
.pm = &hps_pm_ops,
|
||||
.pm = pm_ptr(&hps_pm_ops),
|
||||
.acpi_match_table = ACPI_PTR(hps_acpi_id),
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user