ARM: io: RiscPC: define io addresses relative to IO_BASE

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Russell King 2011-07-07 11:31:36 +01:00
parent fb1dddd73d
commit d0a84e72eb
1 changed files with 6 additions and 6 deletions

View File

@ -51,12 +51,12 @@
/* /*
* IO Addresses * IO Addresses
*/ */
#define VIDC_BASE IOMEM(0xe0400000) #define VIDC_BASE (IO_BASE + 0x00400000)
#define EXPMASK_BASE 0xe0360000 #define EXPMASK_BASE (IO_BASE + 0x00360000)
#define IOMD_BASE IOMEM(0xe0200000) #define IOMD_BASE (IO_BASE + 0x00200000)
#define IOC_BASE IOMEM(0xe0200000) #define IOC_BASE (IO_BASE + 0x00200000)
#define PCIO_BASE IOMEM(0xe0010000) #define FLOPPYDMA_BASE (IO_BASE + 0x0002a000)
#define FLOPPYDMA_BASE IOMEM(0xe002a000) #define PCIO_BASE (IO_BASE + 0x00010000)
#define vidc_writel(val) __raw_writel(val, VIDC_BASE) #define vidc_writel(val) __raw_writel(val, VIDC_BASE)