Commit 6daa79b3 authored by Paul Mundt's avatar Paul Mundt

serial: sh-sci: Move over to dev_pm_ops.

Presently the boot log whines about suspend/resume hooks at the platform
driver level, move these over to dev_pm_ops.
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 0c50f6f3
......@@ -1332,44 +1332,46 @@ static int __devinit sci_probe(struct platform_device *dev)
return ret;
}
static int sci_suspend(struct platform_device *dev, pm_message_t state)
static int sci_suspend(struct device *dev)
{
struct sh_sci_priv *priv = platform_get_drvdata(dev);
struct sh_sci_priv *priv = dev_get_drvdata(dev);
struct sci_port *p;
unsigned long flags;
spin_lock_irqsave(&priv->lock, flags);
list_for_each_entry(p, &priv->ports, node)
uart_suspend_port(&sci_uart_driver, &p->port);
spin_unlock_irqrestore(&priv->lock, flags);
return 0;
}
static int sci_resume(struct platform_device *dev)
static int sci_resume(struct device *dev)
{
struct sh_sci_priv *priv = platform_get_drvdata(dev);
struct sh_sci_priv *priv = dev_get_drvdata(dev);
struct sci_port *p;
unsigned long flags;
spin_lock_irqsave(&priv->lock, flags);
list_for_each_entry(p, &priv->ports, node)
uart_resume_port(&sci_uart_driver, &p->port);
spin_unlock_irqrestore(&priv->lock, flags);
return 0;
}
static struct dev_pm_ops sci_dev_pm_ops = {
.suspend = sci_suspend,
.resume = sci_resume,
};
static struct platform_driver sci_driver = {
.probe = sci_probe,
.remove = __devexit_p(sci_remove),
.suspend = sci_suspend,
.resume = sci_resume,
.driver = {
.name = "sh-sci",
.owner = THIS_MODULE,
.pm = &sci_dev_pm_ops,
},
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment