[PARISC] move VMALLOC_* definitions to fixmap.h

They make way more sense here, really...

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>

+8 -9
+8 -1
include/asm-parisc/fixmap.h
··· 20 20 #define KERNEL_MAP_START (GATEWAY_PAGE_SIZE) 21 21 #define KERNEL_MAP_END (TMPALIAS_MAP_START) 22 22 23 - #endif 23 + #ifndef __ASSEMBLY__ 24 + extern void *vmalloc_start; 25 + #define PCXL_DMA_MAP_SIZE (8*1024*1024) 26 + #define VMALLOC_START ((unsigned long)vmalloc_start) 27 + #define VMALLOC_END (KERNEL_MAP_END) 28 + #endif /*__ASSEMBLY__*/ 29 + 30 + #endif /*_ASM_FIXMAP_H*/
-8
include/asm-parisc/pgtable.h
··· 116 116 117 117 #define FIRST_USER_ADDRESS 0 118 118 119 - #ifndef __ASSEMBLY__ 120 - extern void *vmalloc_start; 121 - #define PCXL_DMA_MAP_SIZE (8*1024*1024) 122 - #define VMALLOC_START ((unsigned long)vmalloc_start) 123 - /* this is a fixmap remnant, see fixmap.h */ 124 - #define VMALLOC_END (KERNEL_MAP_END) 125 - #endif 126 - 127 119 /* NB: The tlb miss handlers make certain assumptions about the order */ 128 120 /* of the following bits, so be careful (One example, bits 25-31 */ 129 121 /* are moved together in one instruction). */