Rename .data.lock_aligned to .data..lock_aligned.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
This commit is contained in:
Denys Vlasenko 2010-02-20 01:03:55 +01:00 committed by Michal Marek
parent 2c31c341a8
commit a7df554ea0
2 changed files with 3 additions and 3 deletions

View file

@ -174,7 +174,7 @@ static inline void set_eiem(unsigned long val)
}) })
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
# define __lock_aligned __attribute__((__section__(".data.lock_aligned"))) # define __lock_aligned __attribute__((__section__(".data..lock_aligned")))
#endif #endif
#define arch_align_stack(x) (x) #define arch_align_stack(x) (x)

View file

@ -94,8 +94,8 @@ SECTIONS
/* PA-RISC locks requires 16-byte alignment */ /* PA-RISC locks requires 16-byte alignment */
. = ALIGN(16); . = ALIGN(16);
.data.lock_aligned : { .data..lock_aligned : {
*(.data.lock_aligned) *(.data..lock_aligned)
} }
/* End of data section */ /* End of data section */