diff options
author | wanzongshun <mcuos.com@gmail.com> | 2009-02-12 02:56:04 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-02-12 11:10:23 +0000 |
commit | 9ee8c9f0124dd70779c400459d57bdbbed60fcfe (patch) | |
tree | beb70007c61758a3b31bfd3ea0006bf6d1c95923 /arch/arm/mach-w90x900 | |
parent | e9fc78230cb77647eb79d4b2f7c4d6c070f611f1 (diff) | |
download | talos-obmc-linux-9ee8c9f0124dd70779c400459d57bdbbed60fcfe.tar.gz talos-obmc-linux-9ee8c9f0124dd70779c400459d57bdbbed60fcfe.zip |
[ARM] 5392/1: Delete redundant macros for w90p910
Delete the macros W90X900_RES and W90X900_DEVICE
I thought it will be better to define the structures
for each device directly.
Signed-off-by: Wan ZongShun <mcuos.com@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-w90x900')
-rw-r--r-- | arch/arm/mach-w90x900/cpu.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/arch/arm/mach-w90x900/cpu.h b/arch/arm/mach-w90x900/cpu.h index 001d50915e38..de29ddcb9459 100644 --- a/arch/arm/mach-w90x900/cpu.h +++ b/arch/arm/mach-w90x900/cpu.h @@ -46,28 +46,6 @@ extern void w90p910_map_io(struct map_desc *mach_desc, int size); extern struct platform_device w90p910_serial_device; extern struct sys_timer w90x900_timer; -#define W90X900_RES(name) \ -struct resource w90x900_##name##_resource[] = { \ - [0] = { \ - .start = name##_PA, \ - .end = name##_PA + 0x0ff, \ - .flags = IORESOURCE_MEM, \ - }, \ - [1] = { \ - .start = IRQ_##name, \ - .end = IRQ_##name, \ - .flags = IORESOURCE_IRQ, \ - } \ -} - -#define W90X900_DEVICE(devname, regname, devid, platdevname) \ -struct platform_device w90x900_##devname = { \ - .name = platdevname, \ - .id = devid, \ - .num_resources = ARRAY_SIZE(w90x900_##regname##_resource), \ - .resource = w90x900_##regname##_resource, \ -} - #define W90X900_8250PORT(name) \ { \ .membase = name##_BA, \ |