From mboxrd@z Thu Jan 1 00:00:00 1970 From: Minkyu Kang Date: Tue, 04 Jun 2013 16:53:02 +0900 Subject: [U-Boot] [PATCH] exynos: i2c: Use generic api to get i2c clk freq In-Reply-To: <1364202173-13719-1-git-send-email-akshay.s@samsung.com> References: <1364202173-13719-1-git-send-email-akshay.s@samsung.com> Message-ID: <51AD9CDE.909@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 25/03/13 18:02, Akshay Saraswat wrote: > From: Padmavathi Venna > > Use generic api to get the i2c clock frequency. Please move following comments to under "---" line. > Tested on smdk5250 with the help of following commands. > run > i2c dev 1 > i2c dev 2 > i2c speed > > This patch depends on: > http://permalink.gmane.org/gmane.comp.boot-loaders.u-boot/154930 > > Signed-off-by: Padmavathi Venna > Signed-off-by: Akshay Saraswat > --- > drivers/i2c/s3c24x0_i2c.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/i2c/s3c24x0_i2c.c b/drivers/i2c/s3c24x0_i2c.c > index 769a2ba..a9f19e7 100644 > --- a/drivers/i2c/s3c24x0_i2c.c > +++ b/drivers/i2c/s3c24x0_i2c.c > @@ -151,7 +151,7 @@ static void i2c_ch_init(struct s3c24x0_i2c *i2c, int speed, int slaveadd) > { > ulong freq, pres = 16, div; > #if (defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) > - freq = get_i2c_clk(); > + freq = clock_get_periph_rate(PERIPH_ID_I2C0); > #else > freq = get_PCLK(); > #endif > Thanks, Minkyu Kang.