You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
379 B
20 lines
379 B
/*
|
|
* 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
|
|
|