| Submitter | Piotr Wilczek |
|---|---|
| Date | Sept. 24, 2012, 6:49 a.m. |
| Message ID | <1348469362-17314-2-git-send-email-p.wilczek@samsung.com> |
| Download | mbox | patch |
| Permalink | /patch/186306/ |
| State | Under Review |
| Delegated to: | Minkyu Kang |
| Headers | show |
Comments
Patch
diff --git a/arch/arm/cpu/armv7/exynos/clock.c b/arch/arm/cpu/armv7/exynos/clock.c index 4f3b451..e1737f8 100644 --- a/arch/arm/cpu/armv7/exynos/clock.c +++ b/arch/arm/cpu/armv7/exynos/clock.c @@ -732,6 +732,11 @@ static unsigned long exynos5_get_i2c_clk(void) return aclk_66; } +static unsigned long exynos4_get_i2c_clk(void) +{ + return get_pll_clk(EPLL); +} + unsigned long get_pll_clk(int pllreg) { if (cpu_is_exynos5()) @@ -752,6 +757,8 @@ unsigned long get_i2c_clk(void) { if (cpu_is_exynos5()) { return exynos5_get_i2c_clk(); + } else if (cpu_is_exynos4()) { + return exynos4_get_i2c_clk(); } else { debug("I2C clock is not set for this CPU\n"); return 0;