tty: serial: remove use of __devexit_p
[cascardo/linux.git] / drivers / tty / serial / 8250 / 8250_dw.c
index c3b2ec0..2db80d0 100644 (file)
@@ -161,6 +161,29 @@ static int __devexit dw8250_remove(struct platform_device *pdev)
        return 0;
 }
 
+#ifdef CONFIG_PM
+static int dw8250_suspend(struct platform_device *pdev, pm_message_t state)
+{
+       struct dw8250_data *data = platform_get_drvdata(pdev);
+
+       serial8250_suspend_port(data->line);
+
+       return 0;
+}
+
+static int dw8250_resume(struct platform_device *pdev)
+{
+       struct dw8250_data *data = platform_get_drvdata(pdev);
+
+       serial8250_resume_port(data->line);
+
+       return 0;
+}
+#else
+#define dw8250_suspend NULL
+#define dw8250_resume NULL
+#endif /* CONFIG_PM */
+
 static const struct of_device_id dw8250_match[] = {
        { .compatible = "snps,dw-apb-uart" },
        { /* Sentinel */ }
@@ -174,7 +197,9 @@ static struct platform_driver dw8250_platform_driver = {
                .of_match_table = dw8250_match,
        },
        .probe                  = dw8250_probe,
-       .remove                 = __devexit_p(dw8250_remove),
+       .remove                 = dw8250_remove,
+       .suspend                = dw8250_suspend,
+       .resume                 = dw8250_resume,
 };
 
 module_platform_driver(dw8250_platform_driver);