From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Chou Date: Tue, 3 Nov 2015 13:16:25 +0800 Subject: [U-Boot] [PATCH] nios2: use common sequence for reserve_uboot In-Reply-To: <1445916250-19321-1-git-send-email-thomas@wytron.com.tw> References: <1445916250-19321-1-git-send-email-thomas@wytron.com.tw> Message-ID: <56384329.2070805@wytron.com.tw> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 2015?10?27? 11:24, Thomas Chou wrote: > Use common sequence for reserve_uboot, as the result is > the same. > > Signed-off-by: Thomas Chou > --- > common/board_f.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > Applied to u-boot-nios. > diff --git a/common/board_f.c b/common/board_f.c > index d88ada3..64c33b3 100644 > --- a/common/board_f.c > +++ b/common/board_f.c > @@ -894,7 +894,7 @@ static init_fnc_t init_sequence_f[] = { > * - board info struct > */ > setup_dest_addr, > -#if defined(CONFIG_BLACKFIN) || defined(CONFIG_NIOS2) > +#if defined(CONFIG_BLACKFIN) > /* Blackfin u-boot monitor should be on top of the ram */ > reserve_uboot, > #endif > @@ -919,7 +919,7 @@ static init_fnc_t init_sequence_f[] = { > !defined(CONFIG_BLACKFIN) && !defined(CONFIG_M68K) > reserve_video, > #endif > -#if !defined(CONFIG_BLACKFIN) && !defined(CONFIG_NIOS2) > +#if !defined(CONFIG_BLACKFIN) > reserve_uboot, > #endif > #ifndef CONFIG_SPL_BUILD >