bcae8aeb32
Initial architecture support for the S3C24A0 ARCH_S3C24A0. We don't yet add an kconfig entry in the main arch/arm/Kconfig file as the series is not complete, so that is left until enough support is in to be useful. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
17 lines
343 B
C
17 lines
343 B
C
/* arch/arm/mach-s3c24a0/include/mach/io.h
|
|
*
|
|
* Copyright 2008 Simtec Electronics
|
|
* Ben Dooks <ben-linux@fluff.org>
|
|
*
|
|
* IO access and mapping routines for the S3C24A0
|
|
*/
|
|
|
|
#ifndef __ASM_ARM_ARCH_IO_H
|
|
#define __ASM_ARM_ARCH_IO_H
|
|
|
|
/* No current ISA/PCI bus support. */
|
|
#define __io(a) ((void __iomem *)(a))
|
|
#define __mem_pci(a) (a)
|
|
|
|
#endif
|