Commit 07b3bb1ef211fdf20eddcae902d1098788ea2f6e

Authored by Denys Vlasenko
Committed by Michal Marek
1 parent 9bf5942486

Rename .data.nosave to .data..nosave.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>

Showing 3 changed files with 3 additions and 3 deletions Side-by-side Diff

arch/s390/kernel/swsusp_asm64.S
... ... @@ -261,7 +261,7 @@
261 261 lghi %r2,0
262 262 br %r14
263 263  
264   - .section .data.nosave,"aw",@progbits
  264 + .section .data..nosave,"aw",@progbits
265 265 .align 8
266 266 .Ldisabled_wait_31:
267 267 .long 0x000a0000,0x00000000
include/asm-generic/vmlinux.lds.h
... ... @@ -175,7 +175,7 @@
175 175 #define NOSAVE_DATA \
176 176 . = ALIGN(PAGE_SIZE); \
177 177 VMLINUX_SYMBOL(__nosave_begin) = .; \
178   - *(.data.nosave) \
  178 + *(.data..nosave) \
179 179 . = ALIGN(PAGE_SIZE); \
180 180 VMLINUX_SYMBOL(__nosave_end) = .;
181 181  
include/linux/init.h
... ... @@ -301,7 +301,7 @@
301 301 #endif
302 302  
303 303 /* Data marked not to be saved by software suspend */
304   -#define __nosavedata __section(.data.nosave)
  304 +#define __nosavedata __section(.data..nosave)
305 305  
306 306 /* This means "can be init if no module support, otherwise module load
307 307 may call it." */