forked from Minki/linux
89f1fa080b
Move the Kconfig entries from plat-s3c to plat-samsung and plat-s3c24xx as necessary. The S3C_BOOT entries and the DMA configuration can go to plat-samsung. The low-level UART configurations are currently S3C2XX specific and can go to plat-s3c24xx. Eliminating plat-s3c from the build process will be submitted seperately. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
19 lines
368 B
C
19 lines
368 B
C
/* arch/arm/mach-s5pc100/include/mach/io.h
|
|
*
|
|
* Copyright 2008 Simtec Electronics
|
|
* Ben Dooks <ben-linux@fluff.org>
|
|
*
|
|
* Default IO routines for S5PC100 systems
|
|
*/
|
|
|
|
#ifndef __ASM_ARM_ARCH_IO_H
|
|
#define __ASM_ARM_ARCH_IO_H
|
|
|
|
/* No current ISA/PCI bus support. */
|
|
#define __io(a) __typesafe_io(a)
|
|
#define __mem_pci(a) (a)
|
|
|
|
#define IO_SPACE_LIMIT (0xFFFFFFFF)
|
|
|
|
#endif
|