This includes a new defconfig for the Shark and some changes to the mach-shark directory to avoid namespace pollution and to switch the rtc to the newer driver. Signed-off-by: Alexander Schulz <alex@shark-linux.de> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			379 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			379 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * arch/arm/mach-shark/include/mach/io.h
 | 
						|
 *
 | 
						|
 * by Alexander Schulz
 | 
						|
 *
 | 
						|
 * derived from:
 | 
						|
 * arch/arm/mach-ebsa110/include/mach/io.h
 | 
						|
 * Copyright (C) 1997,1998 Russell King
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __ASM_ARM_ARCH_IO_H
 | 
						|
#define __ASM_ARM_ARCH_IO_H
 | 
						|
 | 
						|
#define IO_SPACE_LIMIT 0xffffffff
 | 
						|
 | 
						|
#define __io(a)                 ((void __iomem *)(0xe0000000 + (a)))
 | 
						|
 | 
						|
#define __mem_pci(addr) (addr)
 | 
						|
 | 
						|
#endif
 |