diff options
author | Jassi Brar <jassi.brar@samsung.com> | 2010-03-09 15:10:33 +0900 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-05-14 09:20:36 +0900 |
commit | 1aede2ea50a56a83dd95e7d1139a948212be2446 (patch) | |
tree | 056dc111dc511c9a34a11886fe8842acb150c046 /arch/arm/mach-s3c64xx/clock.c | |
parent | bc8eb1e2fa23ff433531c8b631f76302843f52e6 (diff) | |
download | kernel_samsung_smdk4412-1aede2ea50a56a83dd95e7d1139a948212be2446.zip kernel_samsung_smdk4412-1aede2ea50a56a83dd95e7d1139a948212be2446.tar.gz kernel_samsung_smdk4412-1aede2ea50a56a83dd95e7d1139a948212be2446.tar.bz2 |
ARM: S3C6410: Declare possible sources of audio-bus2
Declare possible sources of CLKAUDIO[2]/audio-bus for IISv4 controller.
Signed-off-by: Jassi Brar <jassi.brar@samsung.com>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c64xx/clock.c')
-rw-r--r-- | arch/arm/mach-s3c64xx/clock.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c64xx/clock.c b/arch/arm/mach-s3c64xx/clock.c index c0041eb..6c286d5 100644 --- a/arch/arm/mach-s3c64xx/clock.c +++ b/arch/arm/mach-s3c64xx/clock.c @@ -554,6 +554,19 @@ static struct clksrc_sources clkset_audio1 = { .nr_sources = ARRAY_SIZE(clkset_audio1_list), }; +static struct clk *clkset_audio2_list[] = { + [0] = &clk_mout_epll.clk, + [1] = &clk_dout_mpll, + [2] = &clk_fin_epll, + [3] = &clk_iisv4_cd, + [4] = &clk_pcm_cd, +}; + +static struct clksrc_sources clkset_audio2 = { + .sources = clkset_audio2_list, + .nr_sources = ARRAY_SIZE(clkset_audio2_list), +}; + static struct clk *clkset_camif_list[] = { &clk_h2, }; |