From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Wed, 10 Sep 2014 08:27:00 -0700 Subject: [U-Boot] [PATCH] common: fix include guards for CONFIG_MP In-Reply-To: <1409777874-16158-1-git-send-email-contact@huau-gabriel.fr> References: <1409777874-16158-1-git-send-email-contact@huau-gabriel.fr> Message-ID: <54106DC4.9090208@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 09/03/2014 01:57 PM, Gabriel Huau wrote: > This was breaking the build for some boards: > MPC8536DS MPC8536DS_36BIT MPC8536DS_SDCARD MPC8536DS_SPIFLASH qemu-ppce500 > > Include only these features for some PPC boards if the configuration for MultiProcessor > is enabled. > > Signed-off-by: Gabriel Huau > Cc: Tom Rini > Cc: York Sun > --- > common/board_f.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/common/board_f.c b/common/board_f.c > index 4ece2b6..deea9ca 100644 > --- a/common/board_f.c > +++ b/common/board_f.c > @@ -34,7 +34,7 @@ > #ifdef CONFIG_MPC5xxx > #include > #endif > -#if (defined(CONFIG_MPC86xx) || defined(CONFIG_E500)) > +#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500)) > #include > #endif > > @@ -392,7 +392,7 @@ static int setup_dest_addr(void) > gd->ram_top = board_get_usable_ram_top(gd->mon_len); > gd->relocaddr = gd->ram_top; > debug("Ram top: %08lX\n", (ulong)gd->ram_top); > -#if (defined(CONFIG_MPC86xx) || defined(CONFIG_E500)) > +#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500)) > /* > * We need to make sure the location we intend to put secondary core > * boot code is reserved and not used by any part of u-boot > Acked-by: York Sun York