From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 41454C433EF for ; Fri, 17 Dec 2021 17:29:11 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id D8F0183267; Fri, 17 Dec 2021 18:29:08 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="H/elX2f3"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id F2525830F5; Fri, 17 Dec 2021 18:29:06 +0100 (CET) Received: from sin.source.kernel.org (sin.source.kernel.org [IPv6:2604:1380:40e1:4800::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 65D3B8342C for ; Fri, 17 Dec 2021 18:29:03 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 2E0EDCE2517; Fri, 17 Dec 2021 17:29:00 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3C9C3C36AE7; Fri, 17 Dec 2021 17:28:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1639762138; bh=EfpD6JsS8mRtmgwwmeFOehFe612xvIPy2P6mKx3Ci3k=; h=From:To:Cc:Subject:Date:From; b=H/elX2f3/pWU17SOHljESWYgzx6Xz/W2Z53EeI6kOS/CXgUf0wdIdagiPF7aJllZH SEB8aQjLb90YAsLoC3Xu01EANbaIRfWuaqLbJTZ/1bGArVdXNMgUsYYf+x2TPhgd4d 7JhIxcGEvEut9BpC7hAvrO0JC1L3F/XfsyBF+oj2kOjaKxgATGC9pLrNpUvfYZDmXM DVFsIfym+LrkpPeS38XRW14ION4+2ddC8Xbj7e+Q6ozd4NPdA999pWgOrwsCQU5Qsx TsXAbYm5JPOHtu8mUQuPiYd1qeRjSbKVWMUDk3HcdHTsxbQbBuWoS+xgF2/9lQGxbg 4DB3RNiwQIoOg== Received: by pali.im (Postfix) id 24C2E86E; Fri, 17 Dec 2021 18:28:55 +0100 (CET) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Stefan Roese Cc: =?UTF-8?q?Marek=20Beh=C3=BAn?= , u-boot@lists.denx.de Subject: [PATCH] arm: mvebu: Remove commented example code Date: Fri, 17 Dec 2021 18:28:51 +0100 Message-Id: <20211217172851.4818-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.38 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean Include file debug_uart.h already contains documentation how to use it. Signed-off-by: Pali Rohár --- arch/arm/mach-mvebu/spl.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/arch/arm/mach-mvebu/spl.c b/arch/arm/mach-mvebu/spl.c index 6a9e1d860cf7..29a8adc9d79c 100644 --- a/arch/arm/mach-mvebu/spl.c +++ b/arch/arm/mach-mvebu/spl.c @@ -5,7 +5,6 @@ #include #include -#include #include #include #include @@ -303,18 +302,6 @@ void board_init_f(ulong dummy) */ board_early_init_f(); - /* Example code showing how to enable the debug UART on MVEBU */ -#ifdef EARLY_UART - /* - * Debug UART can be used from here if required: - * - * debug_uart_init(); - * printch('a'); - * printhex8(0x1234); - * printascii("string"); - */ -#endif - /* * Use special translation offset for SPL. This needs to be * configured *before* spl_init() is called as this function -- 2.20.1