Re: [U-Boot] [PATCH v4 4/4] arm: interrupt_init: set sp in IRQ/FIQ modes

2014-10-29 Thread Tom Rini
On Tue, Oct 28, 2014 at 11:16:12PM +0100, Georges Savoundararadj wrote: > Before this commit, the stack addresses for IRQ and FIQ modes, > IRQ_STACK_START and FIQ_STACK_START, were computed in interrupt_init but > they were not used. > > This commit sets the stack pointers for IRQ and FIQ modes.

Re: [U-Boot] [PATCH v4 4/4] arm: interrupt_init: set sp in IRQ/FIQ modes

2014-10-29 Thread Albert ARIBAUD
Hello Georges, On Tue, 28 Oct 2014 23:16:12 +0100, Georges Savoundararadj wrote: > Before this commit, the stack addresses for IRQ and FIQ modes, > IRQ_STACK_START and FIQ_STACK_START, were computed in interrupt_init but > they were not used. > > This commit sets the stack pointers for IRQ and

[U-Boot] [PATCH v4 4/4] arm: interrupt_init: set sp in IRQ/FIQ modes

2014-10-28 Thread Georges Savoundararadj
Before this commit, the stack addresses for IRQ and FIQ modes, IRQ_STACK_START and FIQ_STACK_START, were computed in interrupt_init but they were not used. This commit sets the stack pointers for IRQ and FIQ modes. Signed-off-by: Georges Savoundararadj Cc: Albert Aribaud --- Changes in v4: -