mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-29 10:01:25 +00:00
floppy: Switch driver to dev_pm_ops
Gets rid of the following warning: Platform driver 'floppy' needs updating - please use dev_pm_ops [rjw: Fixed up the definition of floppy_pm_ops.] Signed-off-by: Frans Pop <elendil@planet.nl> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
This commit is contained in:
parent
8de0307326
commit
c90cd332d3
1 changed files with 7 additions and 2 deletions
|
@ -4151,7 +4151,7 @@ static void floppy_device_release(struct device *dev)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
static int floppy_resume(struct platform_device *dev)
|
static int floppy_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
int fdc;
|
int fdc;
|
||||||
|
|
||||||
|
@ -4162,10 +4162,15 @@ static int floppy_resume(struct platform_device *dev)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_driver floppy_driver = {
|
static struct dev_pm_ops floppy_pm_ops = {
|
||||||
.resume = floppy_resume,
|
.resume = floppy_resume,
|
||||||
|
.restore = floppy_resume,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_driver floppy_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "floppy",
|
.name = "floppy",
|
||||||
|
.pm = &floppy_pm_ops,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue