From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Rini Date: Wed, 3 Feb 2021 21:24:10 -0500 Subject: [PATCH 08/13] arm: mediatek: Disable ATAGs support In-Reply-To: <20210204022415.20589-1-trini@konsulko.com> References: <20210204022415.20589-1-trini@konsulko.com> Message-ID: <20210204022415.20589-8-trini@konsulko.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de These platforms never had to support an ATAGs-based Linux Kernel, so remove the options. Cc: Ryder Lee Cc: Weijie Gao Signed-off-by: Tom Rini --- I'm assuming, please correct me if I'm wrong. --- include/configs/mt7623.h | 4 ---- include/configs/mt7629.h | 4 ---- 2 files changed, 8 deletions(-) diff --git a/include/configs/mt7623.h b/include/configs/mt7623.h index 9895279749db..613e96e49235 100644 --- a/include/configs/mt7623.h +++ b/include/configs/mt7623.h @@ -12,10 +12,6 @@ #include /* Miscellaneous configurable options */ -#define CONFIG_SETUP_MEMORY_TAGS -#define CONFIG_INITRD_TAG -#define CONFIG_CMDLINE_TAG - #define CONFIG_SYS_MAXARGS 8 #define CONFIG_SYS_BOOTM_LEN SZ_64M #define CONFIG_SYS_CBSIZE SZ_1K diff --git a/include/configs/mt7629.h b/include/configs/mt7629.h index 08a4d01f5524..af9a5bbb6f19 100644 --- a/include/configs/mt7629.h +++ b/include/configs/mt7629.h @@ -12,10 +12,6 @@ #include /* Miscellaneous configurable options */ -#define CONFIG_SETUP_MEMORY_TAGS -#define CONFIG_INITRD_TAG -#define CONFIG_CMDLINE_TAG - #define CONFIG_SYS_MAXARGS 8 #define CONFIG_SYS_BOOTM_LEN SZ_64M #define CONFIG_SYS_CBSIZE SZ_1K -- 2.17.1