From: Tom Rini Date: Mon, 8 Nov 2021 03:59:40 +0000 (-0500) Subject: Convert CONFIG_TRACE et al to Kconfig X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=53b3df4e0c78a1662b9d2eeba05da17df2f7756e;p=u-boot.git Convert CONFIG_TRACE et al to Kconfig This converts the following to Kconfig: CONFIG_TRACE CONFIG_TRACE_BUFFER_SIZE CONFIG_TRACE_EARLY CONFIG_TRACE_EARLY_ADDR CONFIG_TRACE_EARLY_SIZE Signed-off-by: Tom Rini --- diff --git a/include/configs/exynos5-common.h b/include/configs/exynos5-common.h index e492396416..90d095d535 100644 --- a/include/configs/exynos5-common.h +++ b/include/configs/exynos5-common.h @@ -14,14 +14,6 @@ #define CONFIG_EXYNOS_SPL -#ifdef FTRACE -#define CONFIG_TRACE -#define CONFIG_TRACE_BUFFER_SIZE (16 << 20) -#define CONFIG_TRACE_EARLY_SIZE (8 << 20) -#define CONFIG_TRACE_EARLY -#define CONFIG_TRACE_EARLY_ADDR 0x50000000 -#endif - /* Enable ACE acceleration for SHA1 and SHA256 */ #define CONFIG_EXYNOS_ACE_SHA diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 24c9a84fa3..1f04b88689 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -6,14 +6,6 @@ #ifndef __CONFIG_H #define __CONFIG_H -#ifdef FTRACE -#define CONFIG_TRACE -#define CONFIG_TRACE_BUFFER_SIZE (16 << 20) -#define CONFIG_TRACE_EARLY_SIZE (16 << 20) -#define CONFIG_TRACE_EARLY -#define CONFIG_TRACE_EARLY_ADDR 0x00100000 -#endif - #ifndef CONFIG_SPL_BUILD #define CONFIG_IO_TRACE #endif