[AVR32] Fix wrong pt_regs in critical exception handler

It's not like it really matters at this point since the system is
dying anyway, but handle_critical pushes too few registers on the
stack so the register dump, which makes the register dump look a bit
strange. This patch fixes it.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>

+2 -2
+2 -2
arch/avr32/kernel/entry-avr32b.S
··· 316 316 317 317 /* Low-level exception handlers */ 318 318 handle_critical: 319 - pushm r12 320 - pushm r0-r12 319 + sub sp, 4 320 + stmts --sp, r0-lr 321 321 rcall save_full_context_ex 322 322 mfsr r12, SYSREG_ECR 323 323 mov r11, sp