diff options
author | Andre Przywara <andre.przywara@arm.com> | 2023-05-15 14:52:11 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-05-31 10:11:46 -0400 |
commit | 30cb65748359915a7704be463cb2bfa838bb8877 (patch) | |
tree | d4b161bf3def2e29e53fbdadea20613228449166 /arch | |
parent | 4ee992f7cf907d269d20a26d90513ef67b371dd5 (diff) | |
download | u-boot-30cb65748359915a7704be463cb2bfa838bb8877.tar.gz u-boot-30cb65748359915a7704be463cb2bfa838bb8877.tar.bz2 u-boot-30cb65748359915a7704be463cb2bfa838bb8877.zip |
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>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-uniphier/dram/ddrphy-init.h | 2 |
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 09981f6e06..4431f5c0ba 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> |