parisc: Move pdc_result struct to firmware.c
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
parent
7dc4dbfe75
commit
4add395bc7
|
@ -74,8 +74,8 @@
|
|||
static DEFINE_SPINLOCK(pdc_lock);
|
||||
#endif
|
||||
|
||||
extern unsigned long pdc_result[NUM_PDC_RESULT];
|
||||
extern unsigned long pdc_result2[NUM_PDC_RESULT];
|
||||
unsigned long pdc_result[NUM_PDC_RESULT] __aligned(8);
|
||||
unsigned long pdc_result2[NUM_PDC_RESULT] __aligned(8);
|
||||
|
||||
#ifdef CONFIG_64BIT
|
||||
#define WIDE_FIRMWARE 0x1
|
||||
|
|
|
@ -15,28 +15,15 @@
|
|||
|
||||
#include <linux/linkage.h>
|
||||
|
||||
|
||||
.section .bss
|
||||
|
||||
.export pdc_result
|
||||
.export pdc_result2
|
||||
.align 8
|
||||
pdc_result:
|
||||
.block ASM_PDC_RESULT_SIZE
|
||||
pdc_result2:
|
||||
.block ASM_PDC_RESULT_SIZE
|
||||
|
||||
.export real_stack
|
||||
.export real32_stack
|
||||
.export real64_stack
|
||||
.align 64
|
||||
__PAGE_ALIGNED_BSS
|
||||
real_stack:
|
||||
real32_stack:
|
||||
real64_stack:
|
||||
.block 8192
|
||||
|
||||
#define N_SAVED_REGS 9
|
||||
|
||||
.section .bss
|
||||
save_cr_space:
|
||||
.block REG_SZ * N_SAVED_REGS
|
||||
save_cr_end:
|
||||
|
|
Loading…
Reference in New Issue