Commit 187644636ea79aa4bdc04757ebca919c4fd546e0

Authored by Heiko Carstens
Committed by Martin Schwidefsky
1 parent 7d3f661e57

[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>

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

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