return devm_iio_device_register(dev, indio_dev);
 }
 
-static int __maybe_unused as73211_suspend(struct device *dev)
+static int as73211_suspend(struct device *dev)
 {
        struct iio_dev *indio_dev = i2c_get_clientdata(to_i2c_client(dev));
 
        return as73211_power(indio_dev, false);
 }
 
-static int __maybe_unused as73211_resume(struct device *dev)
+static int as73211_resume(struct device *dev)
 {
        struct iio_dev *indio_dev = i2c_get_clientdata(to_i2c_client(dev));
 
        return as73211_power(indio_dev, true);
 }
 
-static SIMPLE_DEV_PM_OPS(as73211_pm_ops, as73211_suspend, as73211_resume);
+static DEFINE_SIMPLE_DEV_PM_OPS(as73211_pm_ops, as73211_suspend,
+                               as73211_resume);
 
 static const struct of_device_id as73211_of_match[] = {
        { .compatible = "ams,as73211" },
        .driver = {
                .name           = AS73211_DRV_NAME,
                .of_match_table = as73211_of_match,
-               .pm             = &as73211_pm_ops,
+               .pm             = pm_sleep_ptr(&as73211_pm_ops),
        },
        .probe_new  = as73211_probe,
        .id_table   = as73211_id,