aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/ata/ahci_platform.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/drivers/ata/ahci_platform.c b/drivers/ata/ahci_platform.c
index 9e419e1c2006..09728e09cb31 100644
--- a/drivers/ata/ahci_platform.c
+++ b/drivers/ata/ahci_platform.c
@@ -15,6 +15,7 @@
15#include <linux/kernel.h> 15#include <linux/kernel.h>
16#include <linux/gfp.h> 16#include <linux/gfp.h>
17#include <linux/module.h> 17#include <linux/module.h>
18#include <linux/pm.h>
18#include <linux/init.h> 19#include <linux/init.h>
19#include <linux/interrupt.h> 20#include <linux/interrupt.h>
20#include <linux/device.h> 21#include <linux/device.h>
@@ -271,13 +272,10 @@ static int ahci_resume(struct device *dev)
271 272
272 return 0; 273 return 0;
273} 274}
274
275static struct dev_pm_ops ahci_pm_ops = {
276 .suspend = &ahci_suspend,
277 .resume = &ahci_resume,
278};
279#endif 275#endif
280 276
277SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_suspend, ahci_resume);
278
281static const struct of_device_id ahci_of_match[] = { 279static const struct of_device_id ahci_of_match[] = {
282 { .compatible = "calxeda,hb-ahci", }, 280 { .compatible = "calxeda,hb-ahci", },
283 { .compatible = "snps,spear-ahci", }, 281 { .compatible = "snps,spear-ahci", },
@@ -291,9 +289,7 @@ static struct platform_driver ahci_driver = {
291 .name = "ahci", 289 .name = "ahci",
292 .owner = THIS_MODULE, 290 .owner = THIS_MODULE,
293 .of_match_table = ahci_of_match, 291 .of_match_table = ahci_of_match,
294#ifdef CONFIG_PM
295 .pm = &ahci_pm_ops, 292 .pm = &ahci_pm_ops,
296#endif
297 }, 293 },
298 .id_table = ahci_devtype, 294 .id_table = ahci_devtype,
299}; 295};