Microblaze implement enable/disable interrupts through MSR that's why disable_interrupts function should return 1.
Signed-off-by: John Linn <[email protected]> Signed-off-by: Michal Simek <[email protected]> --- arch/microblaze/cpu/interrupts.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/microblaze/cpu/interrupts.c b/arch/microblaze/cpu/interrupts.c index e9d53c1..331746c 100644 --- a/arch/microblaze/cpu/interrupts.c +++ b/arch/microblaze/cpu/interrupts.c @@ -42,7 +42,7 @@ void enable_interrupts (void) int disable_interrupts (void) { MSRCLR(0x2); - return 0; + return 1; } #ifdef CONFIG_SYS_INTC_0 -- 1.5.5.6 _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

