[PATCH 02/12] power/reset: vexpress: Use udelay instead of timers
Pawel Moll
pawel.moll at arm.com
Tue Feb 11 12:10:26 EST 2014
At this stage of system shutdown procedure the jiffies may
not be updated anymore, so just use udelay instead.
Cc: Dmitry Eremin-Solenikov <dbaryshkov at gmail.com>
Cc: David Woodhouse <dwmw2 at infradead.org>
Signed-off-by: Pawel Moll <pawel.moll at arm.com>
---
drivers/power/reset/vexpress-poweroff.c | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/drivers/power/reset/vexpress-poweroff.c b/drivers/power/reset/vexpress-poweroff.c
index 37e7799..195235c 100644
--- a/drivers/power/reset/vexpress-poweroff.c
+++ b/drivers/power/reset/vexpress-poweroff.c
@@ -11,7 +11,7 @@
* Copyright (C) 2012 ARM Limited
*/
-#include <linux/jiffies.h>
+#include <linux/delay.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/platform_device.h>
@@ -26,13 +26,9 @@ static void vexpress_reset_do(struct device *dev, const char *what)
struct regmap *reg = dev_get_drvdata(dev);
if (reg) {
- unsigned long timeout;
-
err = regmap_write(reg, 0, 0);
-
- timeout = jiffies + HZ;
- while (time_before(jiffies, timeout))
- cpu_relax();
+ if (!err)
+ mdelay(1000);
}
dev_emerg(dev, "Unable to %s (%d)\n", what, err);
--
1.8.3.2
More information about the linux-arm-kernel
mailing list