All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/6] watchdog: bcm6345: switch to raw I/O functions
@ 2019-01-21 17:07 Philippe Reynes
  2019-01-21 17:07 ` [U-Boot] [PATCH 2/6] watchdog: bcm6345: allow to use this driver on arm Philippe Reynes
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Philippe Reynes @ 2019-01-21 17:07 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
---
 drivers/watchdog/bcm6345_wdt.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/watchdog/bcm6345_wdt.c b/drivers/watchdog/bcm6345_wdt.c
index e1bd73d..44f5662 100644
--- a/drivers/watchdog/bcm6345_wdt.c
+++ b/drivers/watchdog/bcm6345_wdt.c
@@ -32,8 +32,8 @@ static int bcm6345_wdt_reset(struct udevice *dev)
 {
 	struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
 
-	writel_be(WDT_CTL_START1_MASK, priv->regs + WDT_CTL_REG);
-	writel_be(WDT_CTL_START2_MASK, priv->regs + WDT_CTL_REG);
+	writel(WDT_CTL_START1_MASK, priv->regs + WDT_CTL_REG);
+	writel(WDT_CTL_START2_MASK, priv->regs + WDT_CTL_REG);
 
 	return 0;
 }
@@ -50,7 +50,7 @@ static int bcm6345_wdt_start(struct udevice *dev, u64 timeout, ulong flags)
 		timeout = WDT_VAL_MAX;
 	}
 
-	writel_be(timeout, priv->regs + WDT_VAL_REG);
+	writel(timeout, priv->regs + WDT_VAL_REG);
 
 	return bcm6345_wdt_reset(dev);
 }
@@ -64,8 +64,8 @@ static int bcm6345_wdt_stop(struct udevice *dev)
 {
 	struct bcm6345_wdt_priv *priv = dev_get_priv(dev);
 
-	writel_be(WDT_CTL_STOP1_MASK, priv->regs + WDT_CTL_REG);
-	writel_be(WDT_CTL_STOP2_MASK, priv->regs + WDT_CTL_REG);
+	writel(WDT_CTL_STOP1_MASK, priv->regs + WDT_CTL_REG);
+	writel(WDT_CTL_STOP2_MASK, priv->regs + WDT_CTL_REG);
 
 	return 0;
 }
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-01-21 23:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-21 17:07 [U-Boot] [PATCH 1/6] watchdog: bcm6345: switch to raw I/O functions Philippe Reynes
2019-01-21 17:07 ` [U-Boot] [PATCH 2/6] watchdog: bcm6345: allow to use this driver on arm Philippe Reynes
2019-01-21 17:07 ` [U-Boot] [PATCH 3/6] dt: bcm6838: add watchdog Philippe Reynes
2019-01-21 17:07 ` [U-Boot] [PATCH 4/6] dt: bcm6858: " Philippe Reynes
2019-01-21 17:07 ` [U-Boot] [PATCH 5/6] bcm968380gerg_ram_defconfig: enable watchdog and reboot with watchdog Philippe Reynes
2019-01-21 17:07 ` [U-Boot] [PATCH 6/6] bcm968580_ram_defconfig: " Philippe Reynes
2019-01-21 23:37 ` [U-Boot] [PATCH 1/6] watchdog: bcm6345: switch to raw I/O functions Marek Behun

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.