[S390] nss: add missing .previous statement to asm function

The savesys_ipl_nss asm function is put into the .init.text section
however it is missing a ".previous" section which would restore the
previous section.
Luckily all functions in early.c are init functions so it doesn't
matter currently.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>

authored by Heiko Carstens and committed by Martin Schwidefsky 18764463 7d3f661e

+2 -1
+2 -1
arch/s390/kernel/early.c
··· 82 " lm 6,15,24(15)\n" 83 #endif 84 " br 14\n" 85 - " .size savesys_ipl_nss, .-savesys_ipl_nss\n"); 86 87 static __initdata char upper_command_line[COMMAND_LINE_SIZE]; 88
··· 82 " lm 6,15,24(15)\n" 83 #endif 84 " br 14\n" 85 + " .size savesys_ipl_nss, .-savesys_ipl_nss\n" 86 + " .previous\n"); 87 88 static __initdata char upper_command_line[COMMAND_LINE_SIZE]; 89