From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Mon, 23 Nov 2015 11:19:27 -0800 Subject: [U-Boot] [PATCH 1/2][v2] armv8: LS2080A: Rename LS2085A to reflect LS2080A In-Reply-To: <1447067527-24150-1-git-send-email-prabhakar@freescale.com> References: <1447067527-24150-1-git-send-email-prabhakar@freescale.com> Message-ID: <565366BF.6010501@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 11/09/2015 03:12 AM, Prabhakar Kushwaha wrote: > LS2080A is a prime personality of Freescale?s LS2085A. It is a non-AIOP > personality without support of DP-DDR, L2 switch, 1588, PCIe endpoint etc. > So renaming existing LS2085A code base to reflect LS2080A (Prime personality) > > Signed-off-by: Pratiyush Mohan Srivastava > Signed-off-by: Prabhakar Kushwaha > --- > Changes for v2: Rebased on LS1043 patch set > diff --git a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h > index 2903996..5a91dcb 100644 > --- a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h > +++ b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h > @@ -8,8 +8,10 @@ > #define _FSL_LAYERSCAPE_CPU_H > > static struct cpu_type cpu_type_list[] = { > - CPU_TYPE_ENTRY(LS2085, LS2085, 8), > +#ifdef CONFIG_LS2080A > CPU_TYPE_ENTRY(LS2080, LS2080, 8), > +#endif > + CPU_TYPE_ENTRY(LS2085, LS2085, 8), > CPU_TYPE_ENTRY(LS2045, LS2045, 4), > CPU_TYPE_ENTRY(LS1043, LS1043, 4), > }; Why using ifdef here? York