On 31 July 2014 12:05, <[email protected]> wrote: > From: "byungchul.park" <[email protected]> > > commit 190f1ca85d07 (arm64: add support for kernel mode NEON in interrupt > context) > introduced a typing error in fpsimd_save_partial_state ENDPROC. > fix the typing error. > > Signed-off-by: byungchul.park <[email protected]>
Acked-by: Ard Biesheuvel <[email protected]> > --- > arch/arm64/kernel/entry-fpsimd.S | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm64/kernel/entry-fpsimd.S > b/arch/arm64/kernel/entry-fpsimd.S > index d358cca..c44a82f 100644 > --- a/arch/arm64/kernel/entry-fpsimd.S > +++ b/arch/arm64/kernel/entry-fpsimd.S > @@ -52,7 +52,7 @@ ENDPROC(fpsimd_load_state) > ENTRY(fpsimd_save_partial_state) > fpsimd_save_partial x0, 1, 8, 9 > ret > -ENDPROC(fpsimd_load_partial_state) > +ENDPROC(fpsimd_save_partial_state) > > /* > * Load the bottom n FP registers. > -- > 1.7.9.5 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

