Rename .data.nosave to .data..nosave.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
This commit is contained in:
parent
9bf5942486
commit
07b3bb1ef2
|
@ -261,7 +261,7 @@ restore_registers:
|
||||||
lghi %r2,0
|
lghi %r2,0
|
||||||
br %r14
|
br %r14
|
||||||
|
|
||||||
.section .data.nosave,"aw",@progbits
|
.section .data..nosave,"aw",@progbits
|
||||||
.align 8
|
.align 8
|
||||||
.Ldisabled_wait_31:
|
.Ldisabled_wait_31:
|
||||||
.long 0x000a0000,0x00000000
|
.long 0x000a0000,0x00000000
|
||||||
|
|
|
@ -175,7 +175,7 @@
|
||||||
#define NOSAVE_DATA \
|
#define NOSAVE_DATA \
|
||||||
. = ALIGN(PAGE_SIZE); \
|
. = ALIGN(PAGE_SIZE); \
|
||||||
VMLINUX_SYMBOL(__nosave_begin) = .; \
|
VMLINUX_SYMBOL(__nosave_begin) = .; \
|
||||||
*(.data.nosave) \
|
*(.data..nosave) \
|
||||||
. = ALIGN(PAGE_SIZE); \
|
. = ALIGN(PAGE_SIZE); \
|
||||||
VMLINUX_SYMBOL(__nosave_end) = .;
|
VMLINUX_SYMBOL(__nosave_end) = .;
|
||||||
|
|
||||||
|
|
|
@ -301,7 +301,7 @@ void __init parse_early_options(char *cmdline);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Data marked not to be saved by software suspend */
|
/* Data marked not to be saved by software suspend */
|
||||||
#define __nosavedata __section(.data.nosave)
|
#define __nosavedata __section(.data..nosave)
|
||||||
|
|
||||||
/* This means "can be init if no module support, otherwise module load
|
/* This means "can be init if no module support, otherwise module load
|
||||||
may call it." */
|
may call it." */
|
||||||
|
|
Loading…
Reference in New Issue