io.h 454 字节
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * include/asm-arm/arch-iop32x/io.h
L
Linus Torvalds 已提交
3
 *
4
 * Copyright (C) 2001 MontaVista Software, Inc.
L
Linus Torvalds 已提交
5 6 7 8 9 10
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

11 12
#ifndef __IO_H
#define __IO_H
L
Linus Torvalds 已提交
13

14 15
#include <asm/hardware.h>

16
#define IO_SPACE_LIMIT		0xffffffff
L
Linus Torvalds 已提交
17 18 19 20

#define __io(p)			((void __iomem *)(p))
#define __mem_pci(a)		(a)

21

L
Linus Torvalds 已提交
22
#endif