2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2008-08-05 15:14:15 +00:00
|
|
|
* arch/arm/mach-sa1100/include/mach/io.h
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 1997-1999 Russell King
|
|
|
|
*
|
|
|
|
* Modifications:
|
|
|
|
* 06-12-1997 RMK Created.
|
|
|
|
* 07-04-1999 RMK Major cleanup
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_ARM_ARCH_IO_H
|
|
|
|
#define __ASM_ARM_ARCH_IO_H
|
|
|
|
|
|
|
|
/*
|
2011-07-06 15:57:41 +00:00
|
|
|
* __io() is required to be an equivalent mapping to __mem_pci() for
|
|
|
|
* SOC_COMMON to work.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2008-11-30 11:45:54 +00:00
|
|
|
#define __io(a) __typesafe_io(a)
|
|
|
|
#define __mem_pci(a) (a)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif
|