From e2b70325246f4ea959e883f4caa9e59fb029127d Mon Sep 17 00:00:00 2001 From: Marcel Ziswiler Date: Sun, 1 Mar 2015 00:53:09 +0100 Subject: remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ Basically finish what the following commit started a long time ago: 488f5d8790c451fc527fe5d2ef218f2a5e40ea17 Signed-off-by: Marcel Ziswiler For mx35pdk/woodburn: Acked-by: Stefano Babic --- include/configs/balloon3.h | 1 - 1 file changed, 1 deletion(-) (limited to 'include/configs/balloon3.h') diff --git a/include/configs/balloon3.h b/include/configs/balloon3.h index 2f5a6609b8..8dabc80974 100644 --- a/include/configs/balloon3.h +++ b/include/configs/balloon3.h @@ -84,7 +84,6 @@ /* * Clock Configuration */ -#undef CONFIG_SYS_CLKS_IN_HZ #define CONFIG_SYS_CPUSPEED 0x290 /* 520MHz */ /* -- cgit From ac078fef8cfa7f7e157615ef1868ab3de8230cef Mon Sep 17 00:00:00 2001 From: Marcel Ziswiler Date: Sun, 1 Mar 2015 00:53:10 +0100 Subject: pxa: balloon3: remove nowhere used symbol CONFIG_SYS_MEM_BUF_IMP Signed-off-by: Marcel Ziswiler --- include/configs/balloon3.h | 1 - 1 file changed, 1 deletion(-) (limited to 'include/configs/balloon3.h') diff --git a/include/configs/balloon3.h b/include/configs/balloon3.h index 8dabc80974..f20a631f0b 100644 --- a/include/configs/balloon3.h +++ b/include/configs/balloon3.h @@ -190,7 +190,6 @@ #define CONFIG_SYS_MDMRS_VAL 0x00220022 #define CONFIG_SYS_FLYCNFG_VAL 0x00000000 #define CONFIG_SYS_SXCNFG_VAL 0x00000000 -#define CONFIG_SYS_MEM_BUF_IMP 0x0f /* * PCMCIA and CF Interfaces -- cgit From 44d6db6fc498f4f0337993d7343bab6f893c7979 Mon Sep 17 00:00:00 2001 From: Marcel Ziswiler Date: Sun, 1 Mar 2015 00:53:11 +0100 Subject: pxa: balloon3: fix comment about sdram banks Signed-off-by: Marcel Ziswiler --- include/configs/balloon3.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/configs/balloon3.h') diff --git a/include/configs/balloon3.h b/include/configs/balloon3.h index f20a631f0b..e7f0345ec8 100644 --- a/include/configs/balloon3.h +++ b/include/configs/balloon3.h @@ -13,7 +13,7 @@ * High Level Board Configuration Options */ #define CONFIG_CPU_PXA27X 1 /* Marvell PXA270 CPU */ -#define CONFIG_BALLOON3 1 /* Balloon3 board */ +#define CONFIG_BALLOON3 1 /* Balloon3 board */ /* * Environment settings @@ -89,12 +89,12 @@ /* * DRAM Map */ -#define CONFIG_NR_DRAM_BANKS 3 /* 2 banks of DRAM */ +#define CONFIG_NR_DRAM_BANKS 3 /* 3 banks of DRAM */ #define PHYS_SDRAM_1 0xa0000000 /* SDRAM Bank #1 */ #define PHYS_SDRAM_1_SIZE 0x08000000 /* 128 MB */ #define PHYS_SDRAM_2 0xb0000000 /* SDRAM Bank #2 */ #define PHYS_SDRAM_2_SIZE 0x08000000 /* 128 MB */ -#define PHYS_SDRAM_3 0x80000000 /* SDRAM Bank #2 */ +#define PHYS_SDRAM_3 0x80000000 /* SDRAM Bank #3 */ #define PHYS_SDRAM_3_SIZE 0x08000000 /* 128 MB */ #define CONFIG_SYS_DRAM_BASE 0xa0000000 /* CS0 */ -- cgit From 50dea4626f8687f9a77e95e3e7d2d1cc6bd70dc7 Mon Sep 17 00:00:00 2001 From: Marcel Ziswiler Date: Sun, 1 Mar 2015 00:53:12 +0100 Subject: pxa: balloon3/colibri_pxa270: fix environment optionally being nowhere I couldn't quite figure out whether or not CONFIG_SYS_ENV_IS_NOWHERE actually ever worked but nowadays this is called CONFIG_ENV_IS_NOWHERE. Signed-off-by: Marcel Ziswiler --- include/configs/balloon3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/configs/balloon3.h') diff --git a/include/configs/balloon3.h b/include/configs/balloon3.h index e7f0345ec8..848a15832f 100644 --- a/include/configs/balloon3.h +++ b/include/configs/balloon3.h @@ -134,7 +134,7 @@ #define CONFIG_ENV_IS_IN_FLASH #else #define CONFIG_SYS_NO_FLASH -#define CONFIG_SYS_ENV_IS_NOWHERE +#define CONFIG_ENV_IS_NOWHERE #endif #define CONFIG_SYS_MONITOR_BASE 0x000000 -- cgit