diff options
Diffstat (limited to 'drivers/pcmcia/yenta_socket.c')
-rw-r--r-- | drivers/pcmcia/yenta_socket.c | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/drivers/pcmcia/yenta_socket.c b/drivers/pcmcia/yenta_socket.c index 418988ab6edf..83ace277426c 100644 --- a/drivers/pcmcia/yenta_socket.c +++ b/drivers/pcmcia/yenta_socket.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/delay.h> | 17 | #include <linux/delay.h> |
18 | #include <linux/module.h> | 18 | #include <linux/module.h> |
19 | #include <linux/io.h> | 19 | #include <linux/io.h> |
20 | #include <linux/slab.h> | ||
20 | 21 | ||
21 | #include <pcmcia/cs_types.h> | 22 | #include <pcmcia/cs_types.h> |
22 | #include <pcmcia/ss.h> | 23 | #include <pcmcia/ss.h> |
@@ -1290,12 +1291,9 @@ static int yenta_dev_suspend_noirq(struct device *dev) | |||
1290 | { | 1291 | { |
1291 | struct pci_dev *pdev = to_pci_dev(dev); | 1292 | struct pci_dev *pdev = to_pci_dev(dev); |
1292 | struct yenta_socket *socket = pci_get_drvdata(pdev); | 1293 | struct yenta_socket *socket = pci_get_drvdata(pdev); |
1293 | int ret; | ||
1294 | |||
1295 | ret = pcmcia_socket_dev_suspend(dev); | ||
1296 | 1294 | ||
1297 | if (!socket) | 1295 | if (!socket) |
1298 | return ret; | 1296 | return 0; |
1299 | 1297 | ||
1300 | if (socket->type && socket->type->save_state) | 1298 | if (socket->type && socket->type->save_state) |
1301 | socket->type->save_state(socket); | 1299 | socket->type->save_state(socket); |
@@ -1312,7 +1310,7 @@ static int yenta_dev_suspend_noirq(struct device *dev) | |||
1312 | */ | 1310 | */ |
1313 | /* pci_set_power_state(dev, 3); */ | 1311 | /* pci_set_power_state(dev, 3); */ |
1314 | 1312 | ||
1315 | return ret; | 1313 | return 0; |
1316 | } | 1314 | } |
1317 | 1315 | ||
1318 | static int yenta_dev_resume_noirq(struct device *dev) | 1316 | static int yenta_dev_resume_noirq(struct device *dev) |
@@ -1336,26 +1334,16 @@ static int yenta_dev_resume_noirq(struct device *dev) | |||
1336 | if (socket->type && socket->type->restore_state) | 1334 | if (socket->type && socket->type->restore_state) |
1337 | socket->type->restore_state(socket); | 1335 | socket->type->restore_state(socket); |
1338 | 1336 | ||
1339 | pcmcia_socket_dev_early_resume(dev); | ||
1340 | return 0; | ||
1341 | } | ||
1342 | |||
1343 | static int yenta_dev_resume(struct device *dev) | ||
1344 | { | ||
1345 | pcmcia_socket_dev_late_resume(dev); | ||
1346 | return 0; | 1337 | return 0; |
1347 | } | 1338 | } |
1348 | 1339 | ||
1349 | static const struct dev_pm_ops yenta_pm_ops = { | 1340 | static const struct dev_pm_ops yenta_pm_ops = { |
1350 | .suspend_noirq = yenta_dev_suspend_noirq, | 1341 | .suspend_noirq = yenta_dev_suspend_noirq, |
1351 | .resume_noirq = yenta_dev_resume_noirq, | 1342 | .resume_noirq = yenta_dev_resume_noirq, |
1352 | .resume = yenta_dev_resume, | ||
1353 | .freeze_noirq = yenta_dev_suspend_noirq, | 1343 | .freeze_noirq = yenta_dev_suspend_noirq, |
1354 | .thaw_noirq = yenta_dev_resume_noirq, | 1344 | .thaw_noirq = yenta_dev_resume_noirq, |
1355 | .thaw = yenta_dev_resume, | ||
1356 | .poweroff_noirq = yenta_dev_suspend_noirq, | 1345 | .poweroff_noirq = yenta_dev_suspend_noirq, |
1357 | .restore_noirq = yenta_dev_resume_noirq, | 1346 | .restore_noirq = yenta_dev_resume_noirq, |
1358 | .restore = yenta_dev_resume, | ||
1359 | }; | 1347 | }; |
1360 | 1348 | ||
1361 | #define YENTA_PM_OPS (¥ta_pm_ops) | 1349 | #define YENTA_PM_OPS (¥ta_pm_ops) |