Commit 4add395b authored by Helge Deller's avatar Helge Deller

parisc: Move pdc_result struct to firmware.c

Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent 7dc4dbfe
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment