mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 18:36:37 +00:00 
			
		
		
		
	 b65b4781fb
			
		
	
	
		b65b4781fb
		
	
	
	
	
		
			
			Since we no longer support discontigmem, node is always zero, so remove this argument. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
		
			
				
	
	
		
			30 lines
		
	
	
		
			559 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			559 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * arch/arm/mach-ixp4xx/include/mach/memory.h
 | |
|  *
 | |
|  * Copyright (c) 2001-2004 MontaVista Software, Inc.
 | |
|  */
 | |
| 
 | |
| #ifndef __ASM_ARCH_MEMORY_H
 | |
| #define __ASM_ARCH_MEMORY_H
 | |
| 
 | |
| #include <asm/sizes.h>
 | |
| 
 | |
| /*
 | |
|  * Physical DRAM offset.
 | |
|  */
 | |
| #define PHYS_OFFSET	UL(0x00000000)
 | |
| 
 | |
| #if !defined(__ASSEMBLY__) && defined(CONFIG_PCI)
 | |
| 
 | |
| void ixp4xx_adjust_zones(unsigned long *size, unsigned long *holes);
 | |
| 
 | |
| #define arch_adjust_zones(size, holes) \
 | |
| 	ixp4xx_adjust_zones(size, holes)
 | |
| 
 | |
| #define ISA_DMA_THRESHOLD (SZ_64M - 1)
 | |
| #define MAX_DMA_ADDRESS		(PAGE_OFFSET + SZ_64M)
 | |
| 
 | |
| #endif
 | |
| 
 | |
| #endif
 |