return 0;
 }
 
-static int __maybe_unused psxpad_spi_suspend(struct device *dev)
+static int psxpad_spi_suspend(struct device *dev)
 {
        struct spi_device *spi = to_spi_device(dev);
        struct psxpad *pad = spi_get_drvdata(spi);
        return 0;
 }
 
-static SIMPLE_DEV_PM_OPS(psxpad_spi_pm, psxpad_spi_suspend, NULL);
+static DEFINE_SIMPLE_DEV_PM_OPS(psxpad_spi_pm, psxpad_spi_suspend, NULL);
 
 static const struct spi_device_id psxpad_spi_id[] = {
        { "psxpad-spi", 0 },
 static struct spi_driver psxpad_spi_driver = {
        .driver = {
                .name = "psxpad-spi",
-               .pm = &psxpad_spi_pm,
+               .pm = pm_sleep_ptr(&psxpad_spi_pm),
        },
        .id_table = psxpad_spi_id,
        .probe   = psxpad_spi_probe,