summaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorSylwester Nawrocki2012-07-13 10:48:56 +0200
committerKukjin Kim2012-07-13 10:48:56 +0200
commitbb1488024786597ffe60971645ce9097af78f972 (patch)
treefd53a05e90022aeb854288589e67b3167775c766 /arch/arm
parentARM: SAMSUNG: fix race in s3c_adc_start for ADC (diff)
downloadkernel-qcow2-linux-bb1488024786597ffe60971645ce9097af78f972.tar.gz
kernel-qcow2-linux-bb1488024786597ffe60971645ce9097af78f972.tar.xz
kernel-qcow2-linux-bb1488024786597ffe60971645ce9097af78f972.zip
ARM: S3C24XX: Correct AC97 clock control bit for S3C2440
Use correct gate control bit for AC97 clock which is S3C2440_CLKCON_AC97, not S3C2440_CLKCON_CAMERA. Signed-off-by: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-s3c24xx/clock-s3c2440.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c24xx/clock-s3c2440.c b/arch/arm/mach-s3c24xx/clock-s3c2440.c
index 414364eb426c..cb2883d553b5 100644
--- a/arch/arm/mach-s3c24xx/clock-s3c2440.c
+++ b/arch/arm/mach-s3c24xx/clock-s3c2440.c
@@ -106,7 +106,7 @@ static struct clk s3c2440_clk_cam_upll = {
static struct clk s3c2440_clk_ac97 = {
.name = "ac97",
.enable = s3c2410_clkcon_enable,
- .ctrlbit = S3C2440_CLKCON_CAMERA,
+ .ctrlbit = S3C2440_CLKCON_AC97,
};
static unsigned long s3c2440_fclk_n_getrate(struct clk *clk)