diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-04-28 16:06:24 +0100 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-05-07 11:14:27 +0100 |
commit | 8f1ecf1d965f4e1842b32af5dd40f3d7b6d407ed (patch) | |
tree | a82f9048e72cbe8baef0fcfc81d50f85b0da6108 /arch/arm/plat-s3c64xx | |
parent | a03f7daf6df31b4d849031c51a3c10b8ba78ce67 (diff) |
[ARM] S3C64XX: Configure clocks for DMA controller
Add missing DMA controller block clocks.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s3c64xx')
-rw-r--r-- | arch/arm/plat-s3c64xx/clock.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/plat-s3c64xx/clock.c b/arch/arm/plat-s3c64xx/clock.c index 679076f5071a..0bc2fa1dfc40 100644 --- a/arch/arm/plat-s3c64xx/clock.c +++ b/arch/arm/plat-s3c64xx/clock.c @@ -158,6 +158,18 @@ static struct clk init_clocks_disable[] = { .parent = &clk_48m, .enable = s3c64xx_sclk_ctrl, .ctrlbit = S3C_CLKCON_SCLK_MMC2_48, + }, { + .name = "dma0", + .id = -1, + .parent = &clk_h, + .enable = s3c64xx_hclk_ctrl, + .ctrlbit = S3C_CLKCON_HCLK_DMA0, + }, { + .name = "dma1", + .id = -1, + .parent = &clk_h, + .enable = s3c64xx_hclk_ctrl, + .ctrlbit = S3C_CLKCON_HCLK_DMA1, }, }; |