aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c64xx/clock.c
diff options
context:
space:
mode:
authorAbhilash Kesavan <a.kesavan@samsung.com>2010-06-08 03:55:45 -0400
committerKukjin Kim <kgene.kim@samsung.com>2010-08-05 05:32:50 -0400
commit0ab0b6d226caa4a0268ecbce76a7376c3f40ee6b (patch)
tree729f66aa696b663b92e04d606eb1686b0f353307 /arch/arm/mach-s3c64xx/clock.c
parentdb90005b5bdb7195b55e295548d7a7eb2014d94c (diff)
ARM: S3C64XX: Add support for Compact Flash driver on SMDK6410
Following is added for the CF-ATA driver: - Platform data strucure instantiation - Platform device enabling code - Addition of cfcon clock - Platform-specific gpio setup code Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com> Signed-off-by: Thomas Abraham <thomas.ab@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s3c64xx/clock.c')
-rw-r--r--arch/arm/mach-s3c64xx/clock.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c64xx/clock.c b/arch/arm/mach-s3c64xx/clock.c
index fbd85a9b7bbf..7772f92d2905 100644
--- a/arch/arm/mach-s3c64xx/clock.c
+++ b/arch/arm/mach-s3c64xx/clock.c
@@ -310,6 +310,12 @@ static struct clk init_clocks[] = {
310 .id = -1, 310 .id = -1,
311 .parent = &clk_p, 311 .parent = &clk_p,
312 .ctrlbit = S3C_CLKCON_PCLK_AC97, 312 .ctrlbit = S3C_CLKCON_PCLK_AC97,
313 }, {
314 .name = "cfcon",
315 .id = -1,
316 .parent = &clk_h,
317 .enable = s3c64xx_hclk_ctrl,
318 .ctrlbit = S3C_CLKCON_HCLK_IHOST,
313 } 319 }
314}; 320};
315 321