diff options
author | Felipe Balbi <balbi@ti.com> | 2014-11-06 14:28:51 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-12-04 16:04:14 (GMT) |
commit | d11ac4b56d993153f9d72208809060f3b6c9af76 (patch) | |
tree | 7312d30ed0c88ec4f0cc9236f493fcb7ab4b30f4 /arch/arm/cpu/armv7 | |
parent | 56fe405516ba94df62b57928a8e281b0a5a71313 (diff) | |
download | u-boot-fsl-qoriq-d11ac4b56d993153f9d72208809060f3b6c9af76.tar.xz |
arm: omap: add support for am57xx devices
just add a few ifdefs around because this
device is very similar to dra7xxx.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7')
-rw-r--r-- | arch/arm/cpu/armv7/omap-common/boot-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/boot-common.c b/arch/arm/cpu/armv7/omap-common/boot-common.c index fb535eb..b819fe2 100644 --- a/arch/arm/cpu/armv7/omap-common/boot-common.c +++ b/arch/arm/cpu/armv7/omap-common/boot-common.c @@ -57,7 +57,7 @@ void save_omap_boot_params(void) } } -#ifdef CONFIG_DRA7XX +#if defined(CONFIG_DRA7XX) || defined(CONFIG_AM57XX) /* * We get different values for QSPI_1 and QSPI_4 being used, but * don't actually care about this difference. Rather than |