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 0EC04C54EE9 for ; Sun, 4 Sep 2022 01:29:44 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 1001D84001; Sun, 4 Sep 2022 03:29:33 +0200 (CEST) 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="GZN6KXAB"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 18F1583E4C; Sun, 4 Sep 2022 03:29:30 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (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 B180F83FB5 for ; Sun, 4 Sep 2022 03:29:27 +0200 (CEST) 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 dfw.source.kernel.org (Postfix) with ESMTPS id 7C89760E74 for ; Sun, 4 Sep 2022 01:29:26 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BCED6C433C1 for ; Sun, 4 Sep 2022 01:29:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1662254965; bh=5/TXFGOsjaAeBnPRmr6Mx2A+656t3Fuw3uFF24m8cUE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=GZN6KXABKz+O4o2A0opnFMNVyoeIN3iMdtO866T8BGDh8mk+fhNCF0+GnJzF2QgPf cArF/hq3mwywOHtUnFI41LIITjD2qgfvUkbZ2fN6gr4X61MXJiqA5ca/4ersm8Wi/E qdwfdfAVR99yf8J4gNKpN4y5UT0P0SNZ2u8IcP3AGb1nnWQ3haWmkH7pR8Njl0Zpu0 pzO/7wmrxwHCYY92K7ATdxj0g22X+Qx43IlaJcYaSX9CrOg+u4YrYCnHqWMefF1U4Z hykcUEgD5RFD00yEXVNdrcH+iFaH370sZsXwOZyBFe+cJgS3xtQbjRU3+S4C6CFvUu CBFEiu6tnBWww== Received: by pali.im (Postfix) id 0C9974E11; Sun, 4 Sep 2022 03:29:23 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: u-boot@lists.denx.de Subject: [PATCH 1/9] Nokia RX-51: Remove label copy_kernel_start from lowlevel_init.S Date: Sun, 4 Sep 2022 03:28:58 +0200 Message-Id: <20220904012906.17718-2-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20220904012906.17718-1-pali@kernel.org> References: <20220904012906.17718-1-pali@kernel.org> 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.39 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.6 at phobos.denx.de X-Virus-Status: Clean Label copy_kernel_start is now unused. Remove it. Signed-off-by: Pali Rohár --- board/nokia/rx51/lowlevel_init.S | 1 - 1 file changed, 1 deletion(-) diff --git a/board/nokia/rx51/lowlevel_init.S b/board/nokia/rx51/lowlevel_init.S index c1785bc3f72f..53697fd4e125 100644 --- a/board/nokia/rx51/lowlevel_init.S +++ b/board/nokia/rx51/lowlevel_init.S @@ -46,7 +46,6 @@ save_boot_params: * (CONFIG_SYS_TEXT_BASE). */ -copy_kernel_start: /* r0 - start of kernel before */ adr r0, kernoffs /* r0 - current address of kernoffs section */ ldr r1, kernoffs /* r1 - offset of kernel image from kernoffs section */ -- 2.20.1