diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-23 12:25:16 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:25:45 -0500 |
commit | 3fe4bae88460869a8e553397cd9057a4ee7ca341 (patch) | |
tree | 0158f2cf5abe127cc74d9b63a2c739797de64552 /drivers/mtd/maps | |
parent | e95e9786455c11c8eac30d76e5289d4e40187f9a (diff) |
mtd: introduce mtd_suspend interface
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/maps')
-rw-r--r-- | drivers/mtd/maps/physmap.c | 2 | ||||
-rw-r--r-- | drivers/mtd/maps/pxa2xx-flash.c | 2 | ||||
-rw-r--r-- | drivers/mtd/maps/rbtx4939-flash.c | 2 | ||||
-rw-r--r-- | drivers/mtd/maps/sa1100-flash.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mtd/maps/physmap.c b/drivers/mtd/maps/physmap.c index 1f749d58ae6f..b7f0cd14ae2b 100644 --- a/drivers/mtd/maps/physmap.c +++ b/drivers/mtd/maps/physmap.c | |||
@@ -191,7 +191,7 @@ static void physmap_flash_shutdown(struct platform_device *dev) | |||
191 | 191 | ||
192 | for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++) | 192 | for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++) |
193 | if (info->mtd[i]->suspend && info->mtd[i]->resume) | 193 | if (info->mtd[i]->suspend && info->mtd[i]->resume) |
194 | if (info->mtd[i]->suspend(info->mtd[i]) == 0) | 194 | if (mtd_suspend(info->mtd[i]) == 0) |
195 | info->mtd[i]->resume(info->mtd[i]); | 195 | info->mtd[i]->resume(info->mtd[i]); |
196 | } | 196 | } |
197 | #else | 197 | #else |
diff --git a/drivers/mtd/maps/pxa2xx-flash.c b/drivers/mtd/maps/pxa2xx-flash.c index 274e39914332..9cb427320c04 100644 --- a/drivers/mtd/maps/pxa2xx-flash.c +++ b/drivers/mtd/maps/pxa2xx-flash.c | |||
@@ -125,7 +125,7 @@ static void pxa2xx_flash_shutdown(struct platform_device *dev) | |||
125 | { | 125 | { |
126 | struct pxa2xx_flash_info *info = platform_get_drvdata(dev); | 126 | struct pxa2xx_flash_info *info = platform_get_drvdata(dev); |
127 | 127 | ||
128 | if (info && info->mtd->suspend(info->mtd) == 0) | 128 | if (info && mtd_suspend(info->mtd) == 0) |
129 | info->mtd->resume(info->mtd); | 129 | info->mtd->resume(info->mtd); |
130 | } | 130 | } |
131 | #else | 131 | #else |
diff --git a/drivers/mtd/maps/rbtx4939-flash.c b/drivers/mtd/maps/rbtx4939-flash.c index bb7d2042affa..5856aa2d99f7 100644 --- a/drivers/mtd/maps/rbtx4939-flash.c +++ b/drivers/mtd/maps/rbtx4939-flash.c | |||
@@ -120,7 +120,7 @@ static void rbtx4939_flash_shutdown(struct platform_device *dev) | |||
120 | struct rbtx4939_flash_info *info = platform_get_drvdata(dev); | 120 | struct rbtx4939_flash_info *info = platform_get_drvdata(dev); |
121 | 121 | ||
122 | if (info->mtd->suspend && info->mtd->resume) | 122 | if (info->mtd->suspend && info->mtd->resume) |
123 | if (info->mtd->suspend(info->mtd) == 0) | 123 | if (mtd_suspend(info->mtd) == 0) |
124 | info->mtd->resume(info->mtd); | 124 | info->mtd->resume(info->mtd); |
125 | } | 125 | } |
126 | #else | 126 | #else |
diff --git a/drivers/mtd/maps/sa1100-flash.c b/drivers/mtd/maps/sa1100-flash.c index ac3a290748cd..20944f054867 100644 --- a/drivers/mtd/maps/sa1100-flash.c +++ b/drivers/mtd/maps/sa1100-flash.c | |||
@@ -377,7 +377,7 @@ static int __exit sa1100_mtd_remove(struct platform_device *pdev) | |||
377 | static void sa1100_mtd_shutdown(struct platform_device *dev) | 377 | static void sa1100_mtd_shutdown(struct platform_device *dev) |
378 | { | 378 | { |
379 | struct sa_info *info = platform_get_drvdata(dev); | 379 | struct sa_info *info = platform_get_drvdata(dev); |
380 | if (info && info->mtd->suspend(info->mtd) == 0) | 380 | if (info && mtd_suspend(info->mtd) == 0) |
381 | info->mtd->resume(info->mtd); | 381 | info->mtd->resume(info->mtd); |
382 | } | 382 | } |
383 | #else | 383 | #else |