diff options
author | Alexandre Courbot <acourbot@nvidia.com> | 2014-02-07 05:35:01 +0100 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2014-02-18 21:46:02 +0100 |
commit | a553b7f536de9cf48cee7db410ff6c9108b67344 (patch) | |
tree | 2dfad4e76b41003b73a3370f8f5399fe4be0c383 | |
parent | Linus 3.14-rc1 (diff) | |
download | linux-a553b7f536de9cf48cee7db410ff6c9108b67344.tar.xz linux-a553b7f536de9cf48cee7db410ff6c9108b67344.zip |
ARM: trusted_foundations: fix vendor prefix typos
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>
-rw-r--r-- | arch/arm/firmware/Kconfig | 2 | ||||
-rw-r--r-- | arch/arm/include/asm/trusted_foundations.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/firmware/Kconfig b/arch/arm/firmware/Kconfig index bb00ccf00d66..bb126594995e 100644 --- a/arch/arm/firmware/Kconfig +++ b/arch/arm/firmware/Kconfig @@ -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. diff --git a/arch/arm/include/asm/trusted_foundations.h b/arch/arm/include/asm/trusted_foundations.h index 3bd36e2c5f2e..997862fd5d77 100644 --- a/arch/arm/include/asm/trusted_foundations.h +++ b/arch/arm/include/asm/trusted_foundations.h @@ -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 */ |