aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c24xx/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-s3c24xx/common.c')
-rw-r--r--arch/arm/mach-s3c24xx/common.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c24xx/common.c b/arch/arm/mach-s3c24xx/common.c
index ad5b76bf4d51..7cc6d944c820 100644
--- a/arch/arm/mach-s3c24xx/common.c
+++ b/arch/arm/mach-s3c24xx/common.c
@@ -553,3 +553,17 @@ void __init s3c2443_init_clocks(int xtal)
553 s3c2443_common_clk_init(NULL, xtal, 1, S3C24XX_VA_CLKPWR); 553 s3c2443_common_clk_init(NULL, xtal, 1, S3C24XX_VA_CLKPWR);
554} 554}
555#endif 555#endif
556
557#if defined(CONFIG_CPU_S3C2410) || defined(CONFIG_CPU_S3C2440) || \
558 defined(CONFIG_CPU_S3C2442)
559static struct resource s3c2410_dclk_resource[] = {
560 [0] = DEFINE_RES_MEM(0x56000084, 0x4),
561};
562
563struct platform_device s3c2410_device_dclk = {
564 .name = "s3c2410-dclk",
565 .id = 0,
566 .num_resources = ARRAY_SIZE(s3c2410_dclk_resource),
567 .resource = s3c2410_dclk_resource,
568};
569#endif