diff options
| author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-07-03 17:38:58 +0100 | 
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-07-03 17:38:58 +0100 | 
| commit | e9dea0c65d2de6981356c055781fb99d7191b14e (patch) | |
| tree | 106e6302238f561e679e479584095d49fe5c66fd /arch/arm/mach-s3c2410/mach-nexcoder.c | |
| parent | 1d6bebf2ecf92924492c491d9c3a72edba95f907 (diff) | |
| download | olio-linux-3.10-e9dea0c65d2de6981356c055781fb99d7191b14e.tar.xz olio-linux-3.10-e9dea0c65d2de6981356c055781fb99d7191b14e.zip  | |
[PATCH] ARM: Remove machine description macros
Remove the pointless machine description macros, favouring C99
initialisers instead.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-s3c2410/mach-nexcoder.c')
| -rw-r--r-- | arch/arm/mach-s3c2410/mach-nexcoder.c | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/arm/mach-s3c2410/mach-nexcoder.c b/arch/arm/mach-s3c2410/mach-nexcoder.c index 70487bf4b71..d24c242414c 100644 --- a/arch/arm/mach-s3c2410/mach-nexcoder.c +++ b/arch/arm/mach-s3c2410/mach-nexcoder.c @@ -147,9 +147,11 @@ void __init nexcoder_map_io(void)  MACHINE_START(NEXCODER_2440, "NexVision - Nexcoder 2440") -     MAINTAINER("Guillaume GOURAT <guillaume.gourat@nexvision.tv>") -     BOOT_MEM(S3C2410_SDRAM_PA, S3C2410_PA_UART, (u32)S3C24XX_VA_UART) -     BOOT_PARAMS(S3C2410_SDRAM_PA + 0x100) +	/* Maintainer: Guillaume GOURAT <guillaume.gourat@nexvision.tv> */ +	.phys_ram	= S3C2410_SDRAM_PA, +	.phys_io	= S3C2410_PA_UART, +	.io_pg_offst	= (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc, +	.boot_params	= S3C2410_SDRAM_PA + 0x100,  	.map_io		= nexcoder_map_io,  	.init_irq	= s3c24xx_init_irq,  	.timer		= &s3c24xx_timer,  |