From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Rini Date: Wed, 3 Feb 2021 21:24:06 -0500 Subject: [PATCH 04/13] bcmstb: Disable ATAGs support In-Reply-To: <20210204022415.20589-1-trini@konsulko.com> References: <20210204022415.20589-1-trini@konsulko.com> Message-ID: <20210204022415.20589-4-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 This platform never supported ATAG-based Linux kernels, so disable. Cc: Thomas Fitzsimmons Signed-off-by: Tom Rini --- I am assuming, please correct me if wrong. --- board/broadcom/bcmstb/bcmstb.c | 5 ----- include/configs/bcmstb.h | 6 ------ 2 files changed, 11 deletions(-) diff --git a/board/broadcom/bcmstb/bcmstb.c b/board/broadcom/bcmstb/bcmstb.c index add4285db31d..efdc9c46dc84 100644 --- a/board/broadcom/bcmstb/bcmstb.c +++ b/board/broadcom/bcmstb/bcmstb.c @@ -37,11 +37,6 @@ int board_init(void) return 0; } -u32 get_board_rev(void) -{ - return 0; -} - void reset_cpu(ulong ignored) { } diff --git a/include/configs/bcmstb.h b/include/configs/bcmstb.h index 2660d18f35a9..5dbef0e17f6a 100644 --- a/include/configs/bcmstb.h +++ b/include/configs/bcmstb.h @@ -117,12 +117,6 @@ extern phys_addr_t prior_stage_fdt_address; */ #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600, \ 115200} - -/* - * Informational display configuration. - */ -#define CONFIG_REVISION_TAG - /* * Command configuration. */ -- 2.17.1