[U-Boot-Users] [PATCH/review] Blackfin: fix up comment about CONFIG_BFIN_BOOT_MODE

Looks like I missed one place in the BFIN_BOOT_MODE -> CONFIG_BFIN_BOOT_MODE.
Signed-off-by: Mike Frysinger vapier@gentoo.org --- include/asm-blackfin/blackfin-config-pre.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/asm-blackfin/blackfin-config-pre.h b/include/asm-blackfin/blackfin-config-pre.h index f2c44f7..93e95d6 100644 --- a/include/asm-blackfin/blackfin-config-pre.h +++ b/include/asm-blackfin/blackfin-config-pre.h @@ -1,7 +1,7 @@ /* * blackfin-config-pre.h - common defines for Blackfin boards in config.h * - * Copyright (c) 2007 Analog Devices Inc. + * Copyright (c) 2007-2008 Analog Devices Inc. * * Licensed under the GPL-2 or later. */ @@ -20,7 +20,7 @@ #define CFG_BFIN_CMD_OTP 0x04 #define CFG_BFIN_CMD_CACHE_DUMP 0x08
-/* Bootmode defines -- your config needs to select this via BFIN_BOOT_MODE. +/* Bootmode defines -- your config needs to select this via CONFIG_BFIN_BOOT_MODE. * Depending on your cpu, some of these may not be valid, check your HRM. * The actual values here are meaningless as long as they're unique. */

Signed-off-by: Mike Frysinger vapier@gentoo.org --- include/asm-blackfin/cplb.h | 7 +------ 1 files changed, 1 insertions(+), 6 deletions(-)
diff --git a/include/asm-blackfin/cplb.h b/include/asm-blackfin/cplb.h index 7aa712f..2b23e0a 100644 --- a/include/asm-blackfin/cplb.h +++ b/include/asm-blackfin/cplb.h @@ -1,7 +1,7 @@ /* * cplb.h - defines for managing CPLB tables * - * Copyright (c) 2002-2007 Analog Devices Inc. + * Copyright (c) 2002-2008 Analog Devices Inc. * * Licensed under the GPL-2 or later. */ @@ -73,9 +73,4 @@ #define SDRAM_EBIU (PAGE_SIZE_4MB | CPLB_WT | CPLB_L1_AOW | CPLB_USER_RD | CPLB_USER_WR | CPLB_SUPV_WR | CPLB_VALID | ANOMALY_05000158_WORKAROUND) #endif
-#if defined(CONFIG_BF561) -#define page_descriptor_table_size (CONFIG_MEM_SIZE/4 + 1 + 4) /* SDRAM +L1 + ASYNC_Memory */ -#else -#define page_descriptor_table_size (CONFIG_MEM_SIZE/4 + 2) /* SDRAM + L1 + ASYNC_Memory */ -#endif #endif /* _CPLB_H */
participants (1)
-
Mike Frysinger