aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/mtd/devices/elm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/devices/elm.c b/drivers/mtd/devices/elm.c
index 1fd4a0f77967..0a037b15c11b 100644
--- a/drivers/mtd/devices/elm.c
+++ b/drivers/mtd/devices/elm.c
@@ -418,6 +418,7 @@ static int elm_remove(struct platform_device *pdev)
418 return 0; 418 return 0;
419} 419}
420 420
421#ifdef CONFIG_PM_SLEEP
421/** 422/**
422 * elm_context_save 423 * elm_context_save
423 * saves ELM configurations to preserve them across Hardware powered-down 424 * saves ELM configurations to preserve them across Hardware powered-down
@@ -509,6 +510,7 @@ static int elm_resume(struct device *dev)
509 elm_context_restore(info); 510 elm_context_restore(info);
510 return 0; 511 return 0;
511} 512}
513#endif
512 514
513static SIMPLE_DEV_PM_OPS(elm_pm_ops, elm_suspend, elm_resume); 515static SIMPLE_DEV_PM_OPS(elm_pm_ops, elm_suspend, elm_resume);
514 516