aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c2410/mach-bast.c
diff options
context:
space:
mode:
authorBen Dooks <ben-linux@fluff.org>2007-04-20 06:15:27 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2007-04-21 15:53:14 -0400
commitce89c206ac03dfec700cfa538dcbcc347c0683ce (patch)
tree5bab53a9eb4a71bcf1903a81a9b0b3eba925d43e /arch/arm/mach-s3c2410/mach-bast.c
parentef08574729bcf65bbd1f0c9ad9b9baa9bbd7a830 (diff)
[ARM] 4324/1: S3C24XX: remove clocks from s3c24xx_board
Remove the clocks from the s3c24xx_board as part of the process of simplifying the initialisation sequence by removing struct s3c24xx_board. 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-bast.c')
-rw-r--r--arch/arm/mach-s3c2410/mach-bast.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-s3c2410/mach-bast.c b/arch/arm/mach-s3c2410/mach-bast.c
index 7b81296427eb..0bb2e8b2dd28 100644
--- a/arch/arm/mach-s3c2410/mach-bast.c
+++ b/arch/arm/mach-s3c2410/mach-bast.c
@@ -467,8 +467,6 @@ static struct clk *bast_clocks[] = {
467static struct s3c24xx_board bast_board __initdata = { 467static struct s3c24xx_board bast_board __initdata = {
468 .devices = bast_devices, 468 .devices = bast_devices,
469 .devices_count = ARRAY_SIZE(bast_devices), 469 .devices_count = ARRAY_SIZE(bast_devices),
470 .clocks = bast_clocks,
471 .clocks_count = ARRAY_SIZE(bast_clocks),
472}; 470};
473 471
474static void __init bast_map_io(void) 472static void __init bast_map_io(void)
@@ -486,6 +484,8 @@ static void __init bast_map_io(void)
486 484
487 s3c24xx_uclk.parent = &s3c24xx_clkout1; 485 s3c24xx_uclk.parent = &s3c24xx_clkout1;
488 486
487 s3c24xx_register_clocks(bast_clocks, ARRAY_SIZE(bast_clocks));
488
489 s3c_device_nand.dev.platform_data = &bast_nand_info; 489 s3c_device_nand.dev.platform_data = &bast_nand_info;
490 s3c_device_i2c.dev.platform_data = &bast_i2c_info; 490 s3c_device_i2c.dev.platform_data = &bast_i2c_info;
491 491