diff options
author | Ben Dooks <ben-linux@fluff.org> | 2007-04-20 06:19:16 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-04-21 15:53:19 -0400 |
commit | 57e5171c9ff817d56344d8473e484d6870ae2bf3 (patch) | |
tree | 0c1f0259d0ac0714be0b5bd5600edfcc5cbac717 /arch/arm/mach-s3c2410/mach-vr1000.c | |
parent | ce89c206ac03dfec700cfa538dcbcc347c0683ce (diff) |
[ARM] 4325/1: S3C24XX: remove s3c24xx_board
Remove the use of struct s3c24xx_board as
this is just as easily done by using the
platform device registration functions to
make the initialisation sequence easier.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-s3c2410/mach-vr1000.c')
-rw-r--r-- | arch/arm/mach-s3c2410/mach-vr1000.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/arch/arm/mach-s3c2410/mach-vr1000.c b/arch/arm/mach-s3c2410/mach-vr1000.c index 9380a1360890..7b624bb00490 100644 --- a/arch/arm/mach-s3c2410/mach-vr1000.c +++ b/arch/arm/mach-s3c2410/mach-vr1000.c | |||
@@ -384,11 +384,6 @@ static struct clk *vr1000_clocks[] = { | |||
384 | &s3c24xx_uclk, | 384 | &s3c24xx_uclk, |
385 | }; | 385 | }; |
386 | 386 | ||
387 | static struct s3c24xx_board vr1000_board __initdata = { | ||
388 | .devices = vr1000_devices, | ||
389 | .devices_count = ARRAY_SIZE(vr1000_devices), | ||
390 | }; | ||
391 | |||
392 | static void vr1000_power_off(void) | 387 | static void vr1000_power_off(void) |
393 | { | 388 | { |
394 | s3c2410_gpio_cfgpin(S3C2410_GPB9, S3C2410_GPB9_OUTP); | 389 | s3c2410_gpio_cfgpin(S3C2410_GPB9, S3C2410_GPB9_OUTP); |
@@ -417,10 +412,12 @@ static void __init vr1000_map_io(void) | |||
417 | s3c24xx_init_io(vr1000_iodesc, ARRAY_SIZE(vr1000_iodesc)); | 412 | s3c24xx_init_io(vr1000_iodesc, ARRAY_SIZE(vr1000_iodesc)); |
418 | s3c24xx_init_clocks(0); | 413 | s3c24xx_init_clocks(0); |
419 | s3c24xx_init_uarts(vr1000_uartcfgs, ARRAY_SIZE(vr1000_uartcfgs)); | 414 | s3c24xx_init_uarts(vr1000_uartcfgs, ARRAY_SIZE(vr1000_uartcfgs)); |
420 | s3c24xx_set_board(&vr1000_board); | ||
421 | usb_simtec_init(); | ||
422 | } | 415 | } |
423 | 416 | ||
417 | static void __init vr1000_init(void) | ||
418 | { | ||
419 | platform_add_devices(vr1000_devices, ARRAY_SIZE(vr1000_devices)); | ||
420 | } | ||
424 | 421 | ||
425 | MACHINE_START(VR1000, "Thorcom-VR1000") | 422 | MACHINE_START(VR1000, "Thorcom-VR1000") |
426 | /* Maintainer: Ben Dooks <ben@simtec.co.uk> */ | 423 | /* Maintainer: Ben Dooks <ben@simtec.co.uk> */ |
@@ -428,6 +425,7 @@ MACHINE_START(VR1000, "Thorcom-VR1000") | |||
428 | .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc, | 425 | .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc, |
429 | .boot_params = S3C2410_SDRAM_PA + 0x100, | 426 | .boot_params = S3C2410_SDRAM_PA + 0x100, |
430 | .map_io = vr1000_map_io, | 427 | .map_io = vr1000_map_io, |
428 | .init_machine = vr1000_init, | ||
431 | .init_irq = s3c24xx_init_irq, | 429 | .init_irq = s3c24xx_init_irq, |
432 | .timer = &s3c24xx_timer, | 430 | .timer = &s3c24xx_timer, |
433 | MACHINE_END | 431 | MACHINE_END |