]> git.ipfire.org Git - u-boot.git/commitdiff
arm/PSCI: Removed unused code
authorHou Zhiqiang <Zhiqiang.Hou@nxp.com>
Fri, 29 Jul 2016 10:26:35 +0000 (18:26 +0800)
committerYork Sun <york.sun@nxp.com>
Tue, 2 Aug 2016 16:47:35 +0000 (09:47 -0700)
Identify the PSCI node only by its name, so removed the code finding
it by compatible string.

Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
arch/arm/lib/psci-dt.c

index 8dc31d4897deb2d1c816014d486899d55d008461..bcd92e77eeab5925679e69ee78b3d4480b8b3461 100644 (file)
@@ -51,27 +51,10 @@ int fdt_psci(void *fdt)
                fdt_setprop_string(fdt, tmp, "enable-method", "psci");
        }
 
-       /*
-        * The PSCI node might be called "/psci" or might be called something
-        * else but contain either of the compatible strings
-        * "arm,psci"/"arm,psci-0.2"
-        */
        nodeoff = fdt_path_offset(fdt, "/psci");
        if (nodeoff >= 0)
                goto init_psci_node;
 
-       nodeoff = fdt_node_offset_by_compatible(fdt, -1, "arm,psci");
-       if (nodeoff >= 0)
-               goto init_psci_node;
-
-       nodeoff = fdt_node_offset_by_compatible(fdt, -1, "arm,psci-0.2");
-       if (nodeoff >= 0)
-               goto init_psci_node;
-
-       nodeoff = fdt_node_offset_by_compatible(fdt, -1, "arm,psci-1.0");
-       if (nodeoff >= 0)
-               goto init_psci_node;
-
        nodeoff = fdt_path_offset(fdt, "/");
        if (nodeoff < 0)
                return nodeoff;