diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2013-11-22 00:21:08 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-15 18:28:52 -0500 |
commit | 3541ef9f6f33b137586b32d37b2a068e0160a82c (patch) | |
tree | 12516d6237aeadd9838503ffe9024aefe12dcaf2 | |
parent | f783d8b1299501f0aa0586dbd4fa0460f5f33be0 (diff) |
clk: samsung: exynos4: Correct SRC_MFC register
commit 5fdd1b56be51b1ec4dbde5b213d649ac717442da upstream.
The SRC_MFC register offset was incorrect, which could cause have caused
wrong calculation of rate of sclk_mfc clock, that could in turn lead to
incorrect operation of MFC. This patch corrects it.
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Acked-by: Mike Turquette <mturquette@linaro.org>
[t.figa: Updated patch description]
Signed-off-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/clk/samsung/clk-exynos4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/samsung/clk-exynos4.c b/drivers/clk/samsung/clk-exynos4.c index 3c1f88868f29..b4b283b47308 100644 --- a/drivers/clk/samsung/clk-exynos4.c +++ b/drivers/clk/samsung/clk-exynos4.c | |||
@@ -40,7 +40,7 @@ | |||
40 | #define SRC_TOP1 0xc214 | 40 | #define SRC_TOP1 0xc214 |
41 | #define SRC_CAM 0xc220 | 41 | #define SRC_CAM 0xc220 |
42 | #define SRC_TV 0xc224 | 42 | #define SRC_TV 0xc224 |
43 | #define SRC_MFC 0xcc28 | 43 | #define SRC_MFC 0xc228 |
44 | #define SRC_G3D 0xc22c | 44 | #define SRC_G3D 0xc22c |
45 | #define E4210_SRC_IMAGE 0xc230 | 45 | #define E4210_SRC_IMAGE 0xc230 |
46 | #define SRC_LCD0 0xc234 | 46 | #define SRC_LCD0 0xc234 |