return 0;
 }
 
-#ifdef CONFIG_PM
-static int titsc_suspend(struct device *dev)
+static int __maybe_unused titsc_suspend(struct device *dev)
 {
        struct titsc *ts_dev = dev_get_drvdata(dev);
        struct ti_tscadc_dev *tscadc_dev;
        return 0;
 }
 
-static int titsc_resume(struct device *dev)
+static int __maybe_unused titsc_resume(struct device *dev)
 {
        struct titsc *ts_dev = dev_get_drvdata(dev);
        struct ti_tscadc_dev *tscadc_dev;
        return 0;
 }
 
-static const struct dev_pm_ops titsc_pm_ops = {
-       .suspend = titsc_suspend,
-       .resume  = titsc_resume,
-};
-#define TITSC_PM_OPS (&titsc_pm_ops)
-#else
-#define TITSC_PM_OPS NULL
-#endif
+static SIMPLE_DEV_PM_OPS(titsc_pm_ops, titsc_suspend, titsc_resume);
 
 static const struct of_device_id ti_tsc_dt_ids[] = {
        { .compatible = "ti,am3359-tsc", },
        .remove = titsc_remove,
        .driver = {
                .name   = "TI-am335x-tsc",
-               .pm     = TITSC_PM_OPS,
+               .pm     = &titsc_pm_ops,
                .of_match_table = ti_tsc_dt_ids,
        },
 };