]> git.karo-electronics.de Git - linux-beck.git/commitdiff
Rename .data.nosave to .data..nosave.
authorDenys Vlasenko <vda.linux@googlemail.com>
Sat, 20 Feb 2010 00:03:52 +0000 (01:03 +0100)
committerMichal Marek <mmarek@suse.cz>
Wed, 3 Mar 2010 10:26:01 +0000 (11:26 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
arch/s390/kernel/swsusp_asm64.S
include/asm-generic/vmlinux.lds.h
include/linux/init.h

index 0c26cc1898ec68a96e4b176be0eeff29bff57882..e5cd623cb025707b2354e3464d116b962d21d55a 100644 (file)
@@ -261,7 +261,7 @@ restore_registers:
        lghi    %r2,0
        br      %r14
 
-       .section .data.nosave,"aw",@progbits
+       .section .data..nosave,"aw",@progbits
        .align  8
 .Ldisabled_wait_31:
        .long  0x000a0000,0x00000000
index 6f6da4f080f217f21ece6b30ef64461962a80302..ea3660526e915df2e5909cc366851009a6a632fc 100644 (file)
 #define NOSAVE_DATA                                                    \
        . = ALIGN(PAGE_SIZE);                                           \
        VMLINUX_SYMBOL(__nosave_begin) = .;                             \
-       *(.data.nosave)                                                 \
+       *(.data..nosave)                                                \
        . = ALIGN(PAGE_SIZE);                                           \
        VMLINUX_SYMBOL(__nosave_end) = .;
 
index ab1d31f9352bbcefb46369667c145c3615b29a2c..de994304e0bbb2a1e21e5d6dd7a59ebeea1ebd71 100644 (file)
@@ -301,7 +301,7 @@ void __init parse_early_options(char *cmdline);
 #endif
 
 /* 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
    may call it." */