aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2023-05-15 14:52:11 +0100
committerTom Rini <trini@konsulko.com>2023-05-15 10:31:23 -0400
commit1ff29a959a19da8664004c5c5ed64aac729bb97c (patch)
tree7629a017491394183313c7e700110d68849feefc
parentedc956df9c5eed5d3706a4eddd00818c09825ed2 (diff)
downloadu-boot-1ff29a959a19da8664004c5c5ed64aac729bb97c.zip
u-boot-1ff29a959a19da8664004c5c5ed64aac729bb97c.tar.gz
u-boot-1ff29a959a19da8664004c5c5ed64aac729bb97c.tar.bz2
arm: uniphier: fix header inclusion guard
It seems like the header inclusion guard for some Uniphier DDR PHY header was misspelled. Make the preprocessor symbol for the #ifndef and #define lines the same, so that the double inclusion protection works as expected. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
-rw-r--r--arch/arm/mach-uniphier/dram/ddrphy-init.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-uniphier/dram/ddrphy-init.h b/arch/arm/mach-uniphier/dram/ddrphy-init.h
index 09981f6..4431f5c 100644
--- a/arch/arm/mach-uniphier/dram/ddrphy-init.h
+++ b/arch/arm/mach-uniphier/dram/ddrphy-init.h
@@ -4,7 +4,7 @@
*/
#ifndef ARCH_DDRPHY_INIT_H
-#define ARCH_DDRPHY_INTT_H
+#define ARCH_DDRPHY_INIT_H
#include <linux/compiler.h>
#include <linux/types.h>