[PATCH] ARM: dts: rk3288: fix a typo on crypto-controller

Corentin Labbe posted 1 patch 4 years, 4 months ago
arch/arm/boot/dts/rk3288.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] ARM: dts: rk3288: fix a typo on crypto-controller
Posted by Corentin Labbe 4 years, 4 months ago
crypto-controller had a typo, fix it.

Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
---
 arch/arm/boot/dts/rk3288.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/rk3288.dtsi b/arch/arm/boot/dts/rk3288.dtsi
index aaaa61875701..a0d29de3acf7 100644
--- a/arch/arm/boot/dts/rk3288.dtsi
+++ b/arch/arm/boot/dts/rk3288.dtsi
@@ -971,7 +971,7 @@ i2s: i2s@ff890000 {
 		status = "disabled";
 	};
 
-	crypto: cypto-controller@ff8a0000 {
+	crypto: crypto-controller@ff8a0000 {
 		compatible = "rockchip,rk3288-crypto";
 		reg = <0x0 0xff8a0000 0x0 0x4000>;
 		interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
-- 
2.34.1

Re: [PATCH] ARM: dts: rk3288: fix a typo on crypto-controller
Posted by Krzysztof Kozlowski 4 years, 4 months ago
On Wed, 9 Feb 2022 at 11:14, Corentin Labbe <clabbe@baylibre.com> wrote:
>
> crypto-controller had a typo, fix it.
>
> Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
> ---
>  arch/arm/boot/dts/rk3288.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/rk3288.dtsi b/arch/arm/boot/dts/rk3288.dtsi
> index aaaa61875701..a0d29de3acf7 100644
> --- a/arch/arm/boot/dts/rk3288.dtsi
> +++ b/arch/arm/boot/dts/rk3288.dtsi
> @@ -971,7 +971,7 @@ i2s: i2s@ff890000 {
>                 status = "disabled";
>         };
>
> -       crypto: cypto-controller@ff8a0000 {
> +       crypto: crypto-controller@ff8a0000 {

This should be rather "crypto" as a generic name (see list of examples
for generic naming in DT spec).

Best regards,
Krzysztof