Now as we have of_scu_enable which takes care of mapping
scu base from DT, lets use it.

CC: Jason Cooper <ja...@lakedaemon.net>
CC: Andrew Lunn <and...@lunn.ch>
CC: Gregory Clement <gregory.clem...@free-electrons.com>
CC: Sebastian Hesselbarth <sebastian.hesselba...@gmail.com>
Signed-off-by: Pankaj Dubey <pankaj.du...@samsung.com>
---
 arch/arm/mach-mvebu/board-v7.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/arch/arm/mach-mvebu/board-v7.c b/arch/arm/mach-mvebu/board-v7.c
index ccca951..d7014a3 100644
--- a/arch/arm/mach-mvebu/board-v7.c
+++ b/arch/arm/mach-mvebu/board-v7.c
@@ -41,13 +41,9 @@ static void __iomem *scu_base;
  */
 static void __init mvebu_scu_enable(void)
 {
-       struct device_node *np =
-               of_find_compatible_node(NULL, NULL, "arm,cortex-a9-scu");
-       if (np) {
-               scu_base = of_iomap(np, 0);
+       scu_base = of_scu_get_base();
+       if (!IS_ERR(scu_base))
                scu_enable(scu_base);
-               of_node_put(np);
-       }
 }
 
 void __iomem *mvebu_get_scu_base(void)
-- 
2.7.4

Reply via email to