ARM: trusted_foundations: fix vendor prefix typos
authorAlexandre Courbot <acourbot@nvidia.com>
Fri, 7 Feb 2014 04:35:01 +0000 (13:35 +0900)
committerStephen Warren <swarren@nvidia.com>
Tue, 18 Feb 2014 20:46:02 +0000 (13:46 -0700)
of_register_trusted_foundations() and the firmware Kconfig used
the wrong vendor prefix for Trusted Logic Mobility.

Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Acked-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
arch/arm/firmware/Kconfig
arch/arm/include/asm/trusted_foundations.h

index bb00ccf00d662e0c66d4aba76e45a09f78c42ae3..bb126594995e5896ed6e9763b4ed1cea3cd94dd1 100644 (file)
@@ -20,7 +20,7 @@ config TRUSTED_FOUNDATIONS
          This option allows the kernel to invoke the secure monitor whenever
          required on devices using Trusted Foundations. See
          arch/arm/include/asm/trusted_foundations.h or the
-         tl,trusted-foundations device tree binding documentation for details
+         tlm,trusted-foundations device tree binding documentation for details
          on how to use it.
 
          Say n if you don't know what this is about.
index 3bd36e2c5f2e29ec68048bd32391b323089f675d..997862fd5d77974141a5af289864dfaecc9c16da 100644 (file)
@@ -59,7 +59,7 @@ static inline void of_register_trusted_foundations(void)
         * If we find the target should enable TF but does not support it,
         * fail as the system won't be able to do much anyway
         */
-       if (of_find_compatible_node(NULL, NULL, "tl,trusted-foundations"))
+       if (of_find_compatible_node(NULL, NULL, "tlm,trusted-foundations"))
                register_trusted_foundations(NULL);
 }
 #endif /* CONFIG_TRUSTED_FOUNDATIONS */