From 31e00acdc7e781d1cc681e25aae7485c34762672 Mon Sep 17 00:00:00 2001 From: Alexey Brodkin Date: Wed, 9 Jan 2019 11:22:40 +0300 Subject: serial: Get rid of CONFIG_DW_SERIAL CONFIG_DW_SERIAL is no longer used anywhere so let's forget about it. Signed-off-by: Alexey Brodkin Cc: Tom Rini Cc: Adam Ford Cc: Mario Six Cc: Tuomas Tynkkynen Cc: Alex Kiernan Cc: "Jorg Krause" Cc: Stephen Warren Reviewed-by: Simon Glass --- include/configs/axs10x.h | 1 - include/configs/hsdk.h | 1 - 2 files changed, 2 deletions(-) (limited to 'include') diff --git a/include/configs/axs10x.h b/include/configs/axs10x.h index bd1c9025c6..1224815a92 100644 --- a/include/configs/axs10x.h +++ b/include/configs/axs10x.h @@ -45,7 +45,6 @@ /* * UART configuration */ -#define CONFIG_DW_SERIAL #define CONFIG_SYS_NS16550_SERIAL #define CONFIG_SYS_NS16550_CLK 33333333 #define CONFIG_SYS_NS16550_MEM32 diff --git a/include/configs/hsdk.h b/include/configs/hsdk.h index 2ec2fd12a1..92cf3a109e 100644 --- a/include/configs/hsdk.h +++ b/include/configs/hsdk.h @@ -40,7 +40,6 @@ /* * UART configuration */ -#define CONFIG_DW_SERIAL #define CONFIG_SYS_NS16550_SERIAL #define CONFIG_SYS_NS16550_CLK 33330000 #define CONFIG_SYS_NS16550_MEM32 -- cgit From 70b5ea74063e55bef59190833b5d83039e3d3ae8 Mon Sep 17 00:00:00 2001 From: Alexey Brodkin Date: Tue, 15 Jan 2019 11:42:48 +0300 Subject: ARC: Move ENV_SIZE and ENV_OFFSET to Kconfig Join the party of some ARM boards and drop more items from include/configs/xxx.h. Signed-off-by: Alexey Brodkin Cc: Michal Simek Cc: Simon Glass Reviewed-by: Tom Rini --- include/configs/axs10x.h | 1 - include/configs/emsdp.h | 1 - include/configs/hsdk.h | 2 -- include/configs/iot_devkit.h | 1 - include/configs/nsim.h | 6 ------ include/configs/tb100.h | 6 ------ 6 files changed, 17 deletions(-) (limited to 'include') diff --git a/include/configs/axs10x.h b/include/configs/axs10x.h index 1224815a92..e128d1c08b 100644 --- a/include/configs/axs10x.h +++ b/include/configs/axs10x.h @@ -62,7 +62,6 @@ /* * Environment settings */ -#define CONFIG_ENV_SIZE SZ_16K #define CONFIG_EXTRA_ENV_SETTINGS \ "upgrade=if mmc rescan && " \ "fatload mmc 0:1 ${loadaddr} u-boot-update.img && " \ diff --git a/include/configs/emsdp.h b/include/configs/emsdp.h index e6b2469148..a872d48154 100644 --- a/include/configs/emsdp.h +++ b/include/configs/emsdp.h @@ -21,7 +21,6 @@ /* * Environment */ -#define CONFIG_ENV_SIZE SZ_4K #define CONFIG_BOOTFILE "app.bin" #define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR diff --git a/include/configs/hsdk.h b/include/configs/hsdk.h index 92cf3a109e..9af1d12701 100644 --- a/include/configs/hsdk.h +++ b/include/configs/hsdk.h @@ -57,8 +57,6 @@ /* * Environment settings */ -#define CONFIG_ENV_SIZE SZ_16K - #define CONFIG_EXTRA_ENV_SETTINGS \ "upgrade=if mmc rescan && " \ "fatload mmc 0:1 ${loadaddr} u-boot-update.scr && " \ diff --git a/include/configs/iot_devkit.h b/include/configs/iot_devkit.h index cd1309d4b9..1ba69d9a5d 100644 --- a/include/configs/iot_devkit.h +++ b/include/configs/iot_devkit.h @@ -74,7 +74,6 @@ /* * Environment */ -#define CONFIG_ENV_SIZE SZ_4K #define CONFIG_BOOTFILE "app.bin" #define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR diff --git a/include/configs/nsim.h b/include/configs/nsim.h index c3f34a91e4..61217bbe79 100644 --- a/include/configs/nsim.h +++ b/include/configs/nsim.h @@ -24,12 +24,6 @@ #define CONFIG_SYS_BOOTM_LEN SZ_32M #define CONFIG_SYS_LOAD_ADDR 0x82000000 -/* - * Environment settings - */ -#define CONFIG_ENV_SIZE SZ_512 -#define CONFIG_ENV_OFFSET 0 - /* * Environment configuration */ diff --git a/include/configs/tb100.h b/include/configs/tb100.h index 96e5b6315c..a761c37335 100644 --- a/include/configs/tb100.h +++ b/include/configs/tb100.h @@ -52,12 +52,6 @@ * Command line configuration */ -/* - * Environment settings - */ -#define CONFIG_ENV_SIZE SZ_2K -#define CONFIG_ENV_OFFSET 0 - /* * Environment configuration */ -- cgit