1
0
Fork 0
mirror of https://github.com/followmsi/android_kernel_google_msm.git synced 2024-11-06 23:17:41 +00:00

[PATCH] ARM: 2765/1: S3C24XX - small cleanups in arch/arm/mach-s3c2410

Patch from Ben Dooks

Re-tab the devs.c file, and change the initialiser for the
mach-vr1000.c to use `.xxx = yyy` form.

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Ben Dooks 2005-06-29 11:09:15 +01:00 committed by Russell King
parent f705b1aed7
commit 6904b2465c
2 changed files with 4 additions and 8 deletions
arch/arm/mach-s3c2410

View file

@ -96,8 +96,8 @@ struct platform_device s3c_device_lcd = {
.num_resources = ARRAY_SIZE(s3c_lcd_resource), .num_resources = ARRAY_SIZE(s3c_lcd_resource),
.resource = s3c_lcd_resource, .resource = s3c_lcd_resource,
.dev = { .dev = {
.dma_mask = &s3c_device_lcd_dmamask, .dma_mask = &s3c_device_lcd_dmamask,
.coherent_dma_mask = 0xffffffffUL .coherent_dma_mask = 0xffffffffUL
} }
}; };

View file

@ -371,16 +371,12 @@ void __init vr1000_map_io(void)
usb_simtec_init(); usb_simtec_init();
} }
void __init vr1000_init_irq(void)
{
s3c24xx_init_irq();
}
MACHINE_START(VR1000, "Thorcom-VR1000") MACHINE_START(VR1000, "Thorcom-VR1000")
MAINTAINER("Ben Dooks <ben@simtec.co.uk>") MAINTAINER("Ben Dooks <ben@simtec.co.uk>")
BOOT_MEM(S3C2410_SDRAM_PA, S3C2410_PA_UART, (u32)S3C24XX_VA_UART) BOOT_MEM(S3C2410_SDRAM_PA, S3C2410_PA_UART, (u32)S3C24XX_VA_UART)
BOOT_PARAMS(S3C2410_SDRAM_PA + 0x100) BOOT_PARAMS(S3C2410_SDRAM_PA + 0x100)
MAPIO(vr1000_map_io) .map_io = vr1000_map_io,
INITIRQ(vr1000_init_irq) .init_irq = s3c24xx_init_irq,
.timer = &s3c24xx_timer, .timer = &s3c24xx_timer,
MACHINE_END MACHINE_END