All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S
@ 2012-09-22 16:24 Fabio Estevam
  2012-09-25 13:07 ` Stefano Babic
  2012-09-28  8:30 ` Stefano Babic
  0 siblings, 2 replies; 11+ messages in thread
From: Fabio Estevam @ 2012-09-22 16:24 UTC (permalink / raw)
  To: u-boot

From: Fabio Estevam <fabio.estevam@freescale.com>

lowlevel_init.S is not used on mx6, so remove the file and the associated calls.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v1:
- Also remove SOBJS

 arch/arm/cpu/armv7/mx6/Makefile        |    5 ++---
 arch/arm/cpu/armv7/mx6/lowlevel_init.S |   25 -------------------------
 arch/arm/cpu/armv7/start.S             |   24 ------------------------
 3 files changed, 2 insertions(+), 52 deletions(-)
 delete mode 100644 arch/arm/cpu/armv7/mx6/lowlevel_init.S

diff --git a/arch/arm/cpu/armv7/mx6/Makefile b/arch/arm/cpu/armv7/mx6/Makefile
index cbce411..10f512f 100644
--- a/arch/arm/cpu/armv7/mx6/Makefile
+++ b/arch/arm/cpu/armv7/mx6/Makefile
@@ -28,10 +28,9 @@ include $(TOPDIR)/config.mk
 LIB	= $(obj)lib$(SOC).o
 
 COBJS	= soc.o clock.o
-SOBJS   = lowlevel_init.o
 
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
-OBJS	:= $(addprefix $(obj),$(SOBJS) $(COBJS))
+SRCS	:= $(COBJS:.o=.c)
+OBJS	:= $(addprefix $(obj), $(COBJS))
 
 all:	$(obj).depend $(LIB)
 
diff --git a/arch/arm/cpu/armv7/mx6/lowlevel_init.S b/arch/arm/cpu/armv7/mx6/lowlevel_init.S
deleted file mode 100644
index acadef2..0000000
--- a/arch/arm/cpu/armv7/mx6/lowlevel_init.S
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- */
-.section ".text.init", "x"
-
-#include <linux/linkage.h>
-
-ENTRY(lowlevel_init)
-	mov pc, lr
-ENDPROC(lowlevel_init)
diff --git a/arch/arm/cpu/armv7/start.S b/arch/arm/cpu/armv7/start.S
index 32658eb..4c7c385 100644
--- a/arch/arm/cpu/armv7/start.S
+++ b/arch/arm/cpu/armv7/start.S
@@ -152,7 +152,6 @@ reset:
 	/* the mask ROM code should have PLL and others stable */
 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
 	bl	cpu_init_cp15
-	bl	cpu_init_crit
 #endif
 
 /* Set stackpointer in internal RAM to call board_init_f */
@@ -353,29 +352,6 @@ ENTRY(cpu_init_cp15)
 	mov	pc, lr			@ back to my caller
 ENDPROC(cpu_init_cp15)
 
-#ifndef CONFIG_SKIP_LOWLEVEL_INIT
-/*************************************************************************
- *
- * CPU_init_critical registers
- *
- * setup important registers
- * setup memory timing
- *
- *************************************************************************/
-ENTRY(cpu_init_crit)
-	/*
-	 * Jump to board specific initialization...
-	 * The Mask ROM will have already initialized
-	 * basic memory. Go here to bump up clock rate and handle
-	 * wake up conditions.
-	 */
-	mov	ip, lr			@ persevere link reg across call
-	bl	lowlevel_init		@ go setup pll,mux,memory
-	mov	lr, ip			@ restore link
-	mov	pc, lr			@ back to my caller
-ENDPROC(cpu_init_crit)
-#endif
-
 #ifndef CONFIG_SPL_BUILD
 /*
  *************************************************************************
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S
  2012-09-22 16:24 [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S Fabio Estevam
@ 2012-09-25 13:07 ` Stefano Babic
  2012-09-28  8:30 ` Stefano Babic
  1 sibling, 0 replies; 11+ messages in thread
From: Stefano Babic @ 2012-09-25 13:07 UTC (permalink / raw)
  To: u-boot

On 22/09/2012 18:24, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> lowlevel_init.S is not used on mx6, so remove the file and the associated calls.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---

Applied to u-boot-imx, next branch, thanks.

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S
  2012-09-22 16:24 [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S Fabio Estevam
  2012-09-25 13:07 ` Stefano Babic
@ 2012-09-28  8:30 ` Stefano Babic
  2012-09-28 13:21   ` Fabio Estevam
  2012-09-29 19:31   ` Fabio Estevam
  1 sibling, 2 replies; 11+ messages in thread
From: Stefano Babic @ 2012-09-28  8:30 UTC (permalink / raw)
  To: u-boot

On 22/09/2012 18:24, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> lowlevel_init.S is not used on mx6, so remove the file and the associated calls.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---

Hi Fabio,

I am testing the -next branch. MX5 does not boot anymore - I have tested
on MX53. In fact:

> Changes since v1:
> - Also remove SOBJS
> 
>  arch/arm/cpu/armv7/mx6/Makefile        |    5 ++---
>  arch/arm/cpu/armv7/mx6/lowlevel_init.S |   25 -------------------------
>  arch/arm/cpu/armv7/start.S             |   24 ------------------------
>  3 files changed, 2 insertions(+), 52 deletions(-)
>  delete mode 100644 arch/arm/cpu/armv7/mx6/lowlevel_init.S
> 
> diff --git a/arch/arm/cpu/armv7/mx6/Makefile b/arch/arm/cpu/armv7/mx6/Makefile
> index cbce411..10f512f 100644
> --- a/arch/arm/cpu/armv7/mx6/Makefile
> +++ b/arch/arm/cpu/armv7/mx6/Makefile
> @@ -28,10 +28,9 @@ include $(TOPDIR)/config.mk
>  LIB	= $(obj)lib$(SOC).o
>  
>  COBJS	= soc.o clock.o
> -SOBJS   = lowlevel_init.o
>  
> -SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
> -OBJS	:= $(addprefix $(obj),$(SOBJS) $(COBJS))
> +SRCS	:= $(COBJS:.o=.c)
> +OBJS	:= $(addprefix $(obj), $(COBJS))
>  
>  all:	$(obj).depend $(LIB)
>  
> diff --git a/arch/arm/cpu/armv7/mx6/lowlevel_init.S b/arch/arm/cpu/armv7/mx6/lowlevel_init.S
> deleted file mode 100644
> index acadef2..0000000
> --- a/arch/arm/cpu/armv7/mx6/lowlevel_init.S
> +++ /dev/null
> @@ -1,25 +0,0 @@
> -/*
> - * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
> - *
> - * This program is free software; you can redistribute it and/or
> - * modify it under the terms of the GNU General Public License as
> - * published by the Free Software Foundation; either version 2 of
> - * the License, or (at your option) any later version.
> - *
> - * This program is distributed in the hope that it will be useful,
> - * but WITHOUT ANY WARRANTY; without even the implied warranty of
> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> - * GNU General Public License for more details.
> - *
> - * You should have received a copy of the GNU General Public License
> - * along with this program; if not, write to the Free Software
> - * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
> - * MA 02111-1307 USA
> - */
> -.section ".text.init", "x"
> -
> -#include <linux/linkage.h>
> -
> -ENTRY(lowlevel_init)
> -	mov pc, lr
> -ENDPROC(lowlevel_init)
> diff --git a/arch/arm/cpu/armv7/start.S b/arch/arm/cpu/armv7/start.S
> index 32658eb..4c7c385 100644
> --- a/arch/arm/cpu/armv7/start.S
> +++ b/arch/arm/cpu/armv7/start.S
> @@ -152,7 +152,6 @@ reset:
>  	/* the mask ROM code should have PLL and others stable */
>  #ifndef CONFIG_SKIP_LOWLEVEL_INIT
>  	bl	cpu_init_cp15
> -	bl	cpu_init_crit

What does happen now to the poor MX5 ? lowlevel_init is not called
anymore, I presume...

Maybe it is better to add a weak function in MX6 cpu code. This let Eric
to add a custom lowlevel_init, as he asked.

Do you agree ?

Best regards,
Stefano

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S
  2012-09-28  8:30 ` Stefano Babic
@ 2012-09-28 13:21   ` Fabio Estevam
  2012-09-28 13:35     ` Benoît Thébaudeau
  2012-09-28 14:59     ` Stefano Babic
  2012-09-29 19:31   ` Fabio Estevam
  1 sibling, 2 replies; 11+ messages in thread
From: Fabio Estevam @ 2012-09-28 13:21 UTC (permalink / raw)
  To: u-boot

Hi Stefano,

On Fri, Sep 28, 2012 at 5:30 AM, Stefano Babic <sbabic@denx.de> wrote:

> What does happen now to the poor MX5 ? lowlevel_init is not called
> anymore, I presume...

Which board did you test this with, please?

Regards,

Fabio Estevam

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S
  2012-09-28 13:21   ` Fabio Estevam
@ 2012-09-28 13:35     ` Benoît Thébaudeau
  2012-09-28 13:39       ` Benoît Thébaudeau
  2012-09-28 14:59     ` Stefano Babic
  1 sibling, 1 reply; 11+ messages in thread
From: Benoît Thébaudeau @ 2012-09-28 13:35 UTC (permalink / raw)
  To: u-boot

Hi Fabio,

On Friday, September 28, 2012 3:21:22 PM, Fabio Estevam wrote:
> Hi Stefano,
> 
> On Fri, Sep 28, 2012 at 5:30 AM, Stefano Babic <sbabic@denx.de>
> wrote:
> 
> > What does happen now to the poor MX5 ? lowlevel_init is not called
> > anymore, I presume...
> 
> Which board did you test this with, please?

I have the same issue with a custom i.MX51 board. I guess all i.MX5 boards are
affected because armv7 start.S should not have been altered by this patch.

Please use an empty weak default implementation for i.MX6 as Stefano suggested.

Best regards,
Beno?t

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S
  2012-09-28 13:35     ` Benoît Thébaudeau
@ 2012-09-28 13:39       ` Benoît Thébaudeau
  0 siblings, 0 replies; 11+ messages in thread
From: Benoît Thébaudeau @ 2012-09-28 13:39 UTC (permalink / raw)
  To: u-boot

On Friday, September 28, 2012 3:35:41 PM, Beno?t Th?baudeau wrote:
> Hi Fabio,
> 
> On Friday, September 28, 2012 3:21:22 PM, Fabio Estevam wrote:
> > Hi Stefano,
> > 
> > On Fri, Sep 28, 2012 at 5:30 AM, Stefano Babic <sbabic@denx.de>
> > wrote:
> > 
> > > What does happen now to the poor MX5 ? lowlevel_init is not
> > > called
> > > anymore, I presume...
> > 
> > Which board did you test this with, please?
> 
> I have the same issue with a custom i.MX51 board. I guess all i.MX5
> boards are
> affected because armv7 start.S should not have been altered by this
> patch.
> 
> Please use an empty weak default implementation for i.MX6 as Stefano
> suggested.

Note that this default implementation can be put in start.S like what was done
for save_boot_params().

Best regards,
Beno?t

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S
  2012-09-28 13:21   ` Fabio Estevam
  2012-09-28 13:35     ` Benoît Thébaudeau
@ 2012-09-28 14:59     ` Stefano Babic
  1 sibling, 0 replies; 11+ messages in thread
From: Stefano Babic @ 2012-09-28 14:59 UTC (permalink / raw)
  To: u-boot

On 28/09/2012 15:21, Fabio Estevam wrote:
> Hi Stefano,
> 
> On Fri, Sep 28, 2012 at 5:30 AM, Stefano Babic <sbabic@denx.de> wrote:
> 
>> What does happen now to the poor MX5 ? lowlevel_init is not called
>> anymore, I presume...
> 
> Which board did you test this with, please?

I tested on a mx53qsb, but I think it affects all MX5 boards.

Regards,
Stefano


-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S
  2012-09-28  8:30 ` Stefano Babic
  2012-09-28 13:21   ` Fabio Estevam
@ 2012-09-29 19:31   ` Fabio Estevam
  2012-09-29 20:10     ` Benoît Thébaudeau
  1 sibling, 1 reply; 11+ messages in thread
From: Fabio Estevam @ 2012-09-29 19:31 UTC (permalink / raw)
  To: u-boot

Hi Stefano/Beno?t,

On Fri, Sep 28, 2012 at 5:30 AM, Stefano Babic <sbabic@denx.de> wrote:

>
> I am testing the -next branch. MX5 does not boot anymore - I have tested
> on MX53. In fact:

Sorry for the breakage, the correct patch would be:

---
 arch/arm/cpu/armv7/mx6/Makefile        |    3 +--
 arch/arm/cpu/armv7/mx6/lowlevel_init.S |   25 -------------------------
 2 files changed, 1 insertion(+), 27 deletions(-)
 delete mode 100644 arch/arm/cpu/armv7/mx6/lowlevel_init.S

diff --git a/arch/arm/cpu/armv7/mx6/Makefile b/arch/arm/cpu/armv7/mx6/Makefile
index cbce411..deddcc3 100644
--- a/arch/arm/cpu/armv7/mx6/Makefile
+++ b/arch/arm/cpu/armv7/mx6/Makefile
@@ -28,10 +28,9 @@ include $(TOPDIR)/config.mk
 LIB	= $(obj)lib$(SOC).o

 COBJS	= soc.o clock.o
-SOBJS   = lowlevel_init.o

 SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
-OBJS	:= $(addprefix $(obj),$(SOBJS) $(COBJS))
+OBJS	:= $(addprefix $(obj),$(COBJS))

 all:	$(obj).depend $(LIB)

diff --git a/arch/arm/cpu/armv7/mx6/lowlevel_init.S
b/arch/arm/cpu/armv7/mx6/lowlevel_init.S
deleted file mode 100644
index acadef2..0000000
--- a/arch/arm/cpu/armv7/mx6/lowlevel_init.S
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- */
-.section ".text.init", "x"
-
-#include <linux/linkage.h>
-
-ENTRY(lowlevel_init)
-	mov pc, lr
-ENDPROC(lowlevel_init)
-- 
1.7.9.5

Please drop my original patch from your next tree and then I can send
this modified version.

Thanks,

Fabio Estevam

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S
  2012-09-29 19:31   ` Fabio Estevam
@ 2012-09-29 20:10     ` Benoît Thébaudeau
  2012-09-29 21:35       ` Fabio Estevam
  0 siblings, 1 reply; 11+ messages in thread
From: Benoît Thébaudeau @ 2012-09-29 20:10 UTC (permalink / raw)
  To: u-boot

Hi Fabio,

On Saturday, September 29, 2012 9:31:07 PM, Fabio Estevam wrote:
> Hi Stefano/Beno?t,
> 
> On Fri, Sep 28, 2012 at 5:30 AM, Stefano Babic <sbabic@denx.de>
> wrote:
> 
> >
> > I am testing the -next branch. MX5 does not boot anymore - I have
> > tested
> > on MX53. In fact:
> 
> Sorry for the breakage, the correct patch would be:
> 
> ---
>  arch/arm/cpu/armv7/mx6/Makefile        |    3 +--
>  arch/arm/cpu/armv7/mx6/lowlevel_init.S |   25
>  -------------------------
>  2 files changed, 1 insertion(+), 27 deletions(-)
>  delete mode 100644 arch/arm/cpu/armv7/mx6/lowlevel_init.S
> 
> diff --git a/arch/arm/cpu/armv7/mx6/Makefile
> b/arch/arm/cpu/armv7/mx6/Makefile
> index cbce411..deddcc3 100644
> --- a/arch/arm/cpu/armv7/mx6/Makefile
> +++ b/arch/arm/cpu/armv7/mx6/Makefile
> @@ -28,10 +28,9 @@ include $(TOPDIR)/config.mk
>  LIB	= $(obj)lib$(SOC).o
> 
>  COBJS	= soc.o clock.o
> -SOBJS   = lowlevel_init.o
> 
>  SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)

You forgot the following lines from your v2:
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
+SRCS	:= $(COBJS:.o=.c)

> -OBJS	:= $(addprefix $(obj),$(SOBJS) $(COBJS))
> +OBJS	:= $(addprefix $(obj),$(COBJS))
> 
>  all:	$(obj).depend $(LIB)
> 
> diff --git a/arch/arm/cpu/armv7/mx6/lowlevel_init.S
> b/arch/arm/cpu/armv7/mx6/lowlevel_init.S
> deleted file mode 100644
> index acadef2..0000000
> --- a/arch/arm/cpu/armv7/mx6/lowlevel_init.S
> +++ /dev/null
> @@ -1,25 +0,0 @@
> -/*
> - * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
> - *
> - * This program is free software; you can redistribute it and/or
> - * modify it under the terms of the GNU General Public License as
> - * published by the Free Software Foundation; either version 2 of
> - * the License, or (at your option) any later version.
> - *
> - * This program is distributed in the hope that it will be useful,
> - * but WITHOUT ANY WARRANTY; without even the implied warranty of
> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> - * GNU General Public License for more details.
> - *
> - * You should have received a copy of the GNU General Public License
> - * along with this program; if not, write to the Free Software
> - * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
> - * MA 02111-1307 USA
> - */
> -.section ".text.init", "x"
> -
> -#include <linux/linkage.h>
> -
> -ENTRY(lowlevel_init)
> -	mov pc, lr
> -ENDPROC(lowlevel_init)
> --
> 1.7.9.5
> 
> Please drop my original patch from your next tree and then I can send
> this modified version.

Also, can link succeed for i.MX6 with this patch? Isn't there something missing?
I mean: lowlevel_init() is still called but no longer defined, so shouldn't the
following be added to armv7's start.S?

ENTRY(lowlevel_init)
	bx	lr			@ back to my caller
ENDPROC(lowlevel_init)
	.weak	lowlevel_init

Best regards,
Beno?t

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S
  2012-09-29 20:10     ` Benoît Thébaudeau
@ 2012-09-29 21:35       ` Fabio Estevam
  2012-09-30 10:25         ` Stefano Babic
  0 siblings, 1 reply; 11+ messages in thread
From: Fabio Estevam @ 2012-09-29 21:35 UTC (permalink / raw)
  To: u-boot

Hi Beno?t,

On Sat, Sep 29, 2012 at 5:10 PM, Beno?t Th?baudeau
<benoit.thebaudeau@advansee.com> wrote:

> Also, can link succeed for i.MX6 with this patch? Isn't there something missing?
> I mean: lowlevel_init() is still called but no longer defined, so shouldn't the

Yes, you are right, thanks.

I suggest Stefano just drop my original patch.

Regards,

Fabio Estevam

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S
  2012-09-29 21:35       ` Fabio Estevam
@ 2012-09-30 10:25         ` Stefano Babic
  0 siblings, 0 replies; 11+ messages in thread
From: Stefano Babic @ 2012-09-30 10:25 UTC (permalink / raw)
  To: u-boot

On 29/09/2012 23:35, Fabio Estevam wrote:
> Hi Beno?t,
> 
> On Sat, Sep 29, 2012 at 5:10 PM, Beno?t Th?baudeau
> <benoit.thebaudeau@advansee.com> wrote:
> 
>> Also, can link succeed for i.MX6 with this patch? Isn't there something missing?
>> I mean: lowlevel_init() is still called but no longer defined, so shouldn't the
> 
> Yes, you are right, thanks.
> 
> I suggest Stefano just drop my original patch.

Yes, I already did.

Regards,
Stefano

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2012-09-30 10:25 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-22 16:24 [U-Boot] [PATCH v2] mx6: Remove lowlevel_init.S Fabio Estevam
2012-09-25 13:07 ` Stefano Babic
2012-09-28  8:30 ` Stefano Babic
2012-09-28 13:21   ` Fabio Estevam
2012-09-28 13:35     ` Benoît Thébaudeau
2012-09-28 13:39       ` Benoît Thébaudeau
2012-09-28 14:59     ` Stefano Babic
2012-09-29 19:31   ` Fabio Estevam
2012-09-29 20:10     ` Benoît Thébaudeau
2012-09-29 21:35       ` Fabio Estevam
2012-09-30 10:25         ` Stefano Babic

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.