2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2006-09-19 00:26:25 +02:00
|
|
|
* include/asm-arm/arch-iop32x/io.h
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2006-09-19 00:26:25 +02:00
|
|
|
* Copyright (C) 2001 MontaVista Software, Inc.
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2006-09-19 00:26:25 +02:00
|
|
|
#ifndef __IO_H
|
|
|
|
#define __IO_H
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-10-28 11:20:25 +02:00
|
|
|
#include <asm/hardware.h>
|
|
|
|
|
2006-09-19 00:26:25 +02:00
|
|
|
#define IO_SPACE_LIMIT 0xffffffff
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define __io(p) ((void __iomem *)(p))
|
|
|
|
#define __mem_pci(a) (a)
|
|
|
|
|
2006-09-19 00:26:25 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|