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 404D5C433F5 for ; Sat, 2 Apr 2022 22:05:47 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 22C2083981; Sun, 3 Apr 2022 00:05:31 +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="YdTtVXO8"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 4162183988; Sun, 3 Apr 2022 00:05:23 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::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 C2D4983931 for ; Sun, 3 Apr 2022 00:05:18 +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 ams.source.kernel.org (Postfix) with ESMTPS id 5B8B9B80A0B; Sat, 2 Apr 2022 22:05:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E6DB4C3410F; Sat, 2 Apr 2022 22:05:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1648937117; bh=VKZs0dKzxUm6mlT55lr5I4qotR0eY3SfGOWQZval078=; h=From:To:Cc:Subject:Date:From; b=YdTtVXO8u43I9rGcB36nO17YhGxGwRqvNRp3CWYrMP2kofcWJw6suLv0ZWma09Pdv 5gO9bJSrPUr+jrnzBLKgdasuchMedDIO30oxYDMxGwIYn8j19/7LADb9fljE9F5ewM raVJZvbBKGPdAFkoMxRnHZNKG2agiWfmJ5F1ob6A2ELwCKvQPz1PaqlieEo4eElhva Cwlr3Za1Zl3VlYz1D8wEH2CWkK7esteq3aQtqOzWzRkx6qd6lZRtya8FU6J3qdywDx m6dd0UygLZyzRUVEQe3w40BbwoyuG5bm6Yk/sSbhh7fd4QyCOOjf+kukio9AopP3fa kbgId0ZbGg33A== Received: by pali.im (Postfix) id DFAEE819; Sun, 3 Apr 2022 00:05:13 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Priyanka Jain , Wolfgang Denk Cc: u-boot@lists.denx.de Subject: [PATCH 0/3] powerpc: mpc85xx: Cleanup code Date: Sun, 3 Apr 2022 00:05:07 +0200 Message-Id: <20220402220510.17879-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.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.5 at phobos.denx.de X-Virus-Status: Clean This patch series cleanups mpc85xx e500 code. It removes _start symbol together with its content because it is useless and then rename symbol _start_e500 to _start as this is the real entry point. Third patch just show e500 core version. Tested on P2020 board with configuration when BootROM loads SPL from SD card (which then loads U-Boot) and also when BootROM directly loads U-Boot from SD card. No visible difference, that (old) _start symbol and its content were useless. Pali Rohár (3): powerpc: mpc85xx: Drop _start symbol powerpc: mpc85xx: Rename _start_e500 symbol to _start powerpc: mpc85xx: Show e500 core version arch/powerpc/cpu/mpc85xx/cpu.c | 4 +++- arch/powerpc/cpu/mpc85xx/resetvec.S | 2 +- arch/powerpc/cpu/mpc85xx/start.S | 13 ++++--------- arch/powerpc/cpu/mpc85xx/u-boot.lds | 2 +- doc/README.mpc85xx | 4 ++-- 5 files changed, 11 insertions(+), 14 deletions(-) -- 2.20.1