diff options
author | Marek Vasut <marex@denx.de> | 2014-03-19 02:02:55 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-03-28 15:06:30 -0400 |
commit | 463bb19eebab4a5517c60dc9e74de0cc12c19e56 (patch) | |
tree | 675a0e3e65317f2fcd856e4bea94a3cbeb502130 /arch/arm/include/asm/arch-omap4 | |
parent | 254d68b6011c33af189d006243920c296592fca7 (diff) | |
download | u-boot-imx-463bb19eebab4a5517c60dc9e74de0cc12c19e56.zip u-boot-imx-463bb19eebab4a5517c60dc9e74de0cc12c19e56.tar.gz u-boot-imx-463bb19eebab4a5517c60dc9e74de0cc12c19e56.tar.bz2 |
spl: Fix guardian macros in spl.h
Fix the macros guarding the spl.h header for various platforms. Due to
a typo and a propagation of it, the macros went out-of-sync with their
ifdef check, so fix this.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/include/asm/arch-omap4')
-rw-r--r-- | arch/arm/include/asm/arch-omap4/spl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/arch-omap4/spl.h b/arch/arm/include/asm/arch-omap4/spl.h index 551b27d..fb842a2 100644 --- a/arch/arm/include/asm/arch-omap4/spl.h +++ b/arch/arm/include/asm/arch-omap4/spl.h @@ -5,7 +5,7 @@ * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _ASM_ARCH_SPL_H_ -#define _ASM_SPL_H_ +#define _ASM_ARCH_SPL_H_ #define BOOT_DEVICE_NONE 0 #define BOOT_DEVICE_XIP 1 |