From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Date: Mon, 03 Dec 2012 17:34:41 -0700 Subject: [U-Boot] [PATCH v2 2/7] Tegra30: Add AVP (arm720t) files In-Reply-To: <1354578322-1834-3-git-send-email-twarren@nvidia.com> References: <1354578322-1834-1-git-send-email-twarren@nvidia.com> <1354578322-1834-3-git-send-email-twarren@nvidia.com> Message-ID: <50BD4521.1040302@wwwdotorg.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 12/03/2012 04:45 PM, Tom Warren wrote: > This provides SPL support for T30 boards - AVP early init, plus > CPU (A9) init/jump to main U-Boot. > > Some changes were made to Tegra20 cpu.c to move common routines > into tegra-common/cpu.c and reduce code duplication. > arch/arm/cpu/arm720t/tegra-common/cpu.c | 342 ++++++++++++++++++++++++++++ > arch/arm/cpu/arm720t/tegra20/cpu.c | 216 ++---------------- Just a minor note here; this patch both moves a bunch of code from cpu.c to the new cpu.c, and adds Tegra30 support. It would have been a little easier to review if the code move were a separate patch (with git format-patch -C) so that it was obvious what code in the new cpu.c was changes due to Tegra30 and what was just copied.