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:
parent
2c31c341a8
commit
a7df554ea0
|
@ -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)
|
||||||
|
|
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue