From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Wed, 30 Apr 2014 10:28:10 -0700 Subject: [U-Boot] [PATCH 4/5] powerpc/mpc85xx: Pass 0 flags to board_init_f In-Reply-To: <1398878474-4180-5-git-send-email-agraf@suse.de> References: <1398878474-4180-1-git-send-email-agraf@suse.de> <1398878474-4180-5-git-send-email-agraf@suse.de> Message-ID: <536132AA.5020108@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 04/30/2014 10:21 AM, Alexander Graf wrote: > The new generic board_init_f has an argument now that takes a number of > prepopulated gd->flags bits. We don't have any, so let's set this to 0. > > Signed-off-by: Alexander Graf > --- > arch/powerpc/cpu/mpc85xx/start.S | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/powerpc/cpu/mpc85xx/start.S b/arch/powerpc/cpu/mpc85xx/start.S > index 0149146..86883f5 100644 > --- a/arch/powerpc/cpu/mpc85xx/start.S > +++ b/arch/powerpc/cpu/mpc85xx/start.S > @@ -1159,6 +1159,7 @@ _start_cont: > isync > > bl cpu_init_f > + li r3, 0 > bl board_init_f > isync > > I have this patch pending already http://patchwork.ozlabs.org/patch/343618/. I can take either one when merging. York